Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(j-s): Info in alert message for connected cases #17670

Merged
merged 3 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,9 @@ export const strings = defineMessages({
description:
'Notaður sem skýritexti í tengd mál dropdown á Niðurstaða skrefi.',
},
noConnectedCasesTitle: {
id: 'judicial.system.core:court.indictments.conclusion.select_connected_case.no_connected_cases_title',
defaultMessage: 'Engin opin mál',
description:
'Notaður sem titill á upplýsingabox þegar engin opin mál eru fyrir hendi.',
},
noConnectedCasesMessage: {
id: 'judicial.system.core:court.indictments.conclusion.select_connected_case.no_connected_cases_text',
defaultMessage: 'Engin opin mál ákærða fundust',
id: 'judicial.system.core:court.indictments.conclusion.select_connected_case.no_connected_cases_message',
defaultMessage: 'Engin opin mál fundust á ákærða',
description:
'Notaður sem texti í upplýsingabox þegar engin opin mál eru fyrir hendi.',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ const SelectConnectedCase: FC<Props> = ({
return connectedCases.length === 0 ? (
<AlertMessage
type="warning"
title={formatMessage(strings.noConnectedCasesTitle)}
message={formatMessage(strings.noConnectedCasesMessage)}
/>
) : (
Expand Down
Loading