Sorry, my question is targeted at removing migrations from many tenants.
If we have many tenants, manually running a rollback for each is unfeasible, is the approach to extend db migrator (why isnt there a flag for this already) or to keep track of how many tenants there are and update a script rollback?
Yes
Fix for this was to add the snippet below in main app blazor module
Configure<AbpAspNetCoreContentOptions>(options =>
{
options.ContentTypeMaps.Add(".mjs", "application/javascript");
});
The above lets the system load the purify and marked modules we copied into /ai-libs
And update the path of module imports in razor components in your submodule
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
try
{
var module = await JS.InvokeAsync<IJSObjectReference>("import", "/_content/yourmodule/Components/Chat/ChatInput.razor.js");
await module.InvokeVoidAsync("init", textArea);
await module.DisposeAsync();
}
catch (JSDisconnectedException)
{
}
}
}
It was missing the / before _content
The bot response did not help.
Shared project with you, thanks
Support, please support.
Hello, Can we get this support ticket that's been open for 3 weeks transferred to another support rep?
This ticket has been open over 2 weeks, we would appreciate some feedback
Hello. Your feedback please