Skip to content

Commit

Permalink
fix: change logo and text in for archival application in archive
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtawast committed Dec 5, 2024
1 parent 47307a6 commit a86b9f3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/benefit/handler/public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
"cancelled": "Peruutettu",
"accepted": "Myönteinen",
"rejected": "Kielteinen",
"archival": "Myönteinen"
"archival": "Paperihakemus"
},
"talpaStatuses": {
"not_sent_to_talpa": "Odottaa maksua",
Expand Down
2 changes: 1 addition & 1 deletion frontend/benefit/handler/public/locales/fi/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
"cancelled": "Peruutettu",
"accepted": "Myönteinen",
"rejected": "Kielteinen",
"archival": "Myönteinen"
"archival": "Paperihakemus"
},
"talpaStatuses": {
"not_sent_to_talpa": "Odottaa",
Expand Down
2 changes: 1 addition & 1 deletion frontend/benefit/handler/public/locales/sv/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
"cancelled": "Peruutettu",
"accepted": "Myönteinen",
"rejected": "Kielteinen",
"archival": "Myönteinen"
"archival": "Paperihakemus"
},
"talpaStatuses": {
"not_sent_to_talpa": "Odottaa maksua",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ import {
ApplicationAlterationData,
ApplicationData,
} from 'benefit-shared/types/application';
import { IconAlertCircle, IconCheck, IconCross, Table, Tag } from 'hds-react';
import {
IconAlertCircle,
IconCheck,
IconCross,
IconHistory,
Table,
Tag,
} from 'hds-react';
import { useTranslation } from 'next-i18next';
import * as React from 'react';
import LoadingSkeleton from 'react-loading-skeleton';
Expand Down Expand Up @@ -64,7 +71,7 @@ const ApplicationArchiveList: React.FC<SearchProps> = ({
{status === APPLICATION_STATUSES.ACCEPTED && <IconCheck />}
{status === APPLICATION_STATUSES.REJECTED && <IconCross />}
{status === APPLICATION_STATUSES.CANCELLED && <IconAlertCircle />}
{status === APPLICATION_STATUSES.ARCHIVAL && <IconCheck />}
{status === APPLICATION_STATUSES.ARCHIVAL && <IconHistory />}

{t(
`common:applications.list.columns.applicationStatuses.${String(
Expand Down

0 comments on commit a86b9f3

Please sign in to comment.