Skip to content

Commit 8351368

Browse files
committed
Pass undefined title for abp-web-resources 4.1.0+
1 parent b1620a5 commit 8351368

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

angular/src/app/roles/roles.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export class RolesComponent extends PagedListingComponentBase<RoleDto> {
6666
delete(role: RoleDto): void {
6767
abp.message.confirm(
6868
this.l('RoleDeleteWarningMessage', role.displayName),
69+
undefined,
6970
(result: boolean) => {
7071
if (result) {
7172
this._rolesService

angular/src/app/tenants/tenants.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export class TenantsComponent extends PagedListingComponentBase<TenantDto> {
6767
delete(tenant: TenantDto): void {
6868
abp.message.confirm(
6969
this.l('TenantDeleteWarningMessage', tenant.name),
70+
undefined,
7071
(result: boolean) => {
7172
if (result) {
7273
this._tenantService

angular/src/app/users/users.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ export class UsersComponent extends PagedListingComponentBase<UserDto> {
7575
protected delete(user: UserDto): void {
7676
abp.message.confirm(
7777
this.l('UserDeleteWarningMessage', user.fullName),
78+
undefined,
7879
(result: boolean) => {
7980
if (result) {
8081
this._userService.delete(user.id).subscribe(() => {

0 commit comments

Comments
 (0)