Activities of "rcalv002"

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

Showing 1 to 10 of 80 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 05, 2025, 12:34
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.