Skip to content

Commit

Permalink
CB-4695 show delete button in footer if deleting is true (#2383)
Browse files Browse the repository at this point in the history
  • Loading branch information
devnaumov authored Feb 19, 2024
1 parent a569e8e commit 9c54fb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class ObjectPropertyTableFooterService {
isPresent(context) {
return context.contextType === ObjectPropertyTableFooterService.objectPropertyContextType;
},
isHidden: () => this.navTreeSettingsService.settings.getValue('deleting'),
isHidden: () => !this.navTreeSettingsService.settings.getValue('deleting'),
isDisabled: context => {
if (context.data.tableState.selectedList.length === 0) {
return true;
Expand Down

0 comments on commit 9c54fb1

Please sign in to comment.