Skip to content

Commit

Permalink
fix(platform): table showing info bar with selected filters
Browse files Browse the repository at this point in the history
closes [#11783](#11783)

- Minor refactor
  • Loading branch information
khotcholava committed Oct 24, 2024
1 parent f600751 commit d96ea3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions libs/i18n/src/lib/translations/translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ export default {
decreasePeriodLabel: 'Decrease period',
navigationInstruction:
'To move between items in this list, press top arrow or bottom arrow. To switch between lists press left arrow or right arrow.',
nightLabel: 'at night',
morningLabel: 'in the morning',
afternoonLabel: 'in the afternoon',
eveningLabel: 'in the evening'
nightLabel: 'night',
morningLabel: 'morning',
afternoonLabel: 'afternoon',
eveningLabel: 'evening'
},
coreTimePicker: {
timePickerInputLabel: 'Time picker input',
Expand Down
2 changes: 1 addition & 1 deletion libs/platform/table-helpers/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export abstract class Table<T = any> implements PresetManagedComponent<PlatformT
readonly openTableColumnSettings: EventEmitter<void> = new EventEmitter<void>();

/** Event fired when table state changes. */
readonly tableColumnFilterChange = new EventEmitter<void>();
readonly tableColumnFilterChange: EventEmitter<any> = new EventEmitter<void>();

/** Event fired when empty row added. */
readonly emptyRowAdded: EventEmitter<void>;
Expand Down

0 comments on commit d96ea3f

Please sign in to comment.