Browse Source

Merge pull request #23551 from abpframework/auto-merge/rel-9-3/3941

Merge branch dev with rel-9.3
pull/23558/head
Ma Liming 6 months ago
committed by GitHub
parent
commit
8e83981f72
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      npm/ng-packs/packages/components/extensible/src/lib/components/extensible-table/extensible-table.component.ts

2
npm/ng-packs/packages/components/extensible/src/lib/components/extensible-table/extensible-table.component.ts

@ -89,7 +89,7 @@ export class ExtensibleTableComponent<R = any> implements OnChanges, AfterViewIn
}
get actionsText(): string {
return this._actionsText ?? (this.actionList.length > 1 ? 'AbpUi::Actions' : '');
return this._actionsText ?? (this.actionList.length >= 1 ? 'AbpUi::Actions' : '');
}
@Input() data!: R[];

Loading…
Cancel
Save