From d96ea3fd3b8583ffa94f91f835a9674a7ee1fbe0 Mon Sep 17 00:00:00 2001 From: khotcholava <31448057+khotcholava@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:48:26 +0400 Subject: [PATCH] fix(platform): table showing info bar with selected filters closes [#11783](https://github.com/SAP/fundamental-ngx/issues/11783) - Minor refactor --- libs/i18n/src/lib/translations/translations.ts | 8 ++++---- libs/platform/table-helpers/table.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/i18n/src/lib/translations/translations.ts b/libs/i18n/src/lib/translations/translations.ts index 0adf9dee007..feb78518dab 100644 --- a/libs/i18n/src/lib/translations/translations.ts +++ b/libs/i18n/src/lib/translations/translations.ts @@ -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', diff --git a/libs/platform/table-helpers/table.ts b/libs/platform/table-helpers/table.ts index 8010c5cf62c..0b2d9aaba9c 100644 --- a/libs/platform/table-helpers/table.ts +++ b/libs/platform/table-helpers/table.ts @@ -189,7 +189,7 @@ export abstract class Table implements PresetManagedComponent = new EventEmitter(); /** Event fired when table state changes. */ - readonly tableColumnFilterChange = new EventEmitter(); + readonly tableColumnFilterChange: EventEmitter = new EventEmitter(); /** Event fired when empty row added. */ readonly emptyRowAdded: EventEmitter;