Skip to content

Commit

Permalink
fix(j-s): Info in alert message for connected cases (#17670)
Browse files Browse the repository at this point in the history
Co-authored-by: Jón Levy <levy@andes.is>
  • Loading branch information
2 people authored and robertaandersen committed Jan 29, 2025
1 parent 6966945 commit 2a5ea5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
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

0 comments on commit 2a5ea5c

Please sign in to comment.