Open Closed

ABP commercial Tenant and Edition form bugs #3583


User avatar
0
abpfintranet-1 created

1- There is some bugs in abp tenant settings. When I delete an "Edition" which has been used in a "Tenant", it will be deleted which is wrong and should not be deleted. As a result, when I go to edit this "Tenant", which is using this deleted "Edition", it gives error and can not be edited, as shown in below image:

2- When I want to create a new tenant, the button is disabled probably because of incomplete data in the form fields like edition, email,... and also when password is not complex, but!!! there is no error message and I can not find why the save button is disabled as shown in below image. So, please add an error message there. Thanks

Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)

2 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Thanks. We will check.

    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    This will be fixed in 6.0

    public virtual async Task DeleteAsync(Edition edition)
    {
        var tenants = await TenantRepository.GetListAsync(editionId: edition.Id);
        if (tenants.Any())
        {
            throw new UnableDeleteEditionException(edition.DisplayName);
        }
    
        await EditionRepository.DeleteAsync(edition);
    }
    
    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
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.8.0-preview. Updated on September 16, 2026, 14:50
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.