0
mike3077 created
- Template: app
- Created ABP Studio Version: 1.2.2
- Current ABP Studio Version: 1.2.2
- Tiered: Yes
- Multi-Tenancy: Yes
- UI Framework: blazor-webapp
- Theme: leptonx
- Theme Style: system
- Theme Menu Placement: side
- Run Install Libs: Yes
- Database Provider: mongodb
- Run Db Migrator: Yes
- Mobile Framework: none
- Public Website: Yes
- Social Login: Yes
- Include Tests: Yes
- Kubernetes Configuration: Yes
- Distributed Event Bus: rabbitmq
- Use Local References: No
- Optional Modules:
- GDPR
- FileManagement
- TextTemplateManagement
- LanguageManagement
- AuditLogging
- Chat
- OpenIddictAdmin
- Selected Languages: English, English (United Kingdom)
- Default Language: English
- Create Command: abp new AT1.Core -t app --tiered --ui-framework blazor-webapp --database-provider mongodb --theme leptonx --public-website --without-cms-kit --sample-crud-page --dont-run-bundling -chat -file-management
current syntax: <ModalBackdrop />
correct syntax: <ModalContent IsCentered="true" ShowBackdrop="true">
This is not a question, please reset our alloted question count to reflect this.
Thanks!
2 Answer(s)
-
0
- The ABP Framework upgraded to Blazorise 1.0 in version 5.2, which introduced breaking changes to modal components. The correct usage is now:
<ModalContent IsCentered="true" ShowBackdrop="true"> <!-- Modal content here --> </ModalContent>
The previous
<ModalBackdrop />
syntax is outdated and should be replaced as shown above.- For a full list of required changes when migrating or updating generated code, refer to the official migration guide and the Blazorise 1.0 migration pull request.
Sources:
- https://abp.io/docs/latest/release-info/migration-guides/abp-5-2
- https://github.com/abpframework/abp/pull/11649
This response was generated by AI. If it didn’t solve your problem, feel free to post a new answer — our support team will jump in to help you soon.
-
0
Yes we are aware. The current version of ABP Studio is still generating samples with the old syntax.