Skip to content

Commit

Permalink
Merge pull request #3485 from ita-social-projects/bug/6824/future-upc…
Browse files Browse the repository at this point in the history
…oming

[Bugfix] #6824 Change event time filter value from FUTURE to UPCOMING.
  • Loading branch information
hnativlyubomyr authored Dec 16, 2024
2 parents f386c36 + d392760 commit e875e91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe('EventsListComponent', () => {
it('should update selected filters list', () => {
const clickedFiltersList: FilterItem[] = [
{ type: 'location', nameEn: 'Kyiv', nameUa: 'Київ' },
{ type: 'eventTimeStatus', nameEn: 'Future', nameUa: 'Майбутній' },
{ type: 'eventTimeStatus', nameEn: 'Upcoming', nameUa: 'Майбутній' },
{ type: 'eventTimeStatus', nameEn: 'Past', nameUa: 'Завершений' },
{ type: 'location', nameEn: 'Lviv', nameUa: 'Львів' }
];
Expand Down
2 changes: 1 addition & 1 deletion src/app/main/component/events/models/event-consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ROLES = {
};

export const timeStatusFiltersData: FilterItem[] = [
{ type: 'eventTimeStatus', nameEn: 'Future', nameUa: 'Майбутні' },
{ type: 'eventTimeStatus', nameEn: 'Upcoming', nameUa: 'Майбутні' },
{ type: 'eventTimeStatus', nameEn: 'Past', nameUa: 'Завершені' }
];

Expand Down

0 comments on commit e875e91

Please sign in to comment.