-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into signature_collection_parliamentary
- Loading branch information
Showing
19 changed files
with
289 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
const { composePlugins, withNx } = require('@nx/webpack') | ||
const { withReact } = require('@nx/react') | ||
|
||
module.exports = composePlugins(withReact({ ssr: true }), (config) => { | ||
// App specific config | ||
config.stats.chunks = false | ||
config.stats.modules = false | ||
module.exports = composePlugins( | ||
withNx(), | ||
withReact({ ssr: true }), | ||
(config) => { | ||
// App specific config | ||
config.stats.chunks = false | ||
config.stats.modules = false | ||
|
||
return config | ||
}) | ||
return config | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
apps/judicial-system/web/src/routes/Court/components/SubpoenaType/SubpoenaType.strings.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { defineMessages } from 'react-intl' | ||
|
||
export const strings = defineMessages({ | ||
title: { | ||
id: 'judicial.system.core:court.subpoena_type.title', | ||
defaultMessage: 'Tegund fyrirkalls', | ||
description: | ||
'Notaður sem titill fyrir Tegund fyrirkalls hluta á Fyrirkalls skjá í dómaraflæði í ákærum.', | ||
}, | ||
absence: { | ||
id: 'judicial.system.core:court.subpoena_type.absence', | ||
defaultMessage: 'Útivistarfyrirkall', | ||
description: | ||
'Notaður sem texti fyrir Útivistarfyrirkall valkost á Fyrirkalls skjá í dómaraflæði í ákærum.', | ||
}, | ||
arrest: { | ||
id: 'judicial.system.core:court.subpoena_type.arrest', | ||
defaultMessage: 'Handtökufyrirkall', | ||
description: | ||
'Notaður sem texti fyrir Handtökufyrirkall valkost á Fyrirkalls skjá í dómaraflæði í ákærum.', | ||
}, | ||
}) |
Oops, something went wrong.