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;