Skip to content

Commit 1cd55c5

Browse files
authored
Added priority translation to detail modal (#3321)
* added translation to `priority` field * moved translation into formData object * Automatic frontend build --------- Co-authored-by: Corepex <16717695+Corepex@users.noreply.github.com>
1 parent 025c9f2 commit 1cd55c5

File tree

747 files changed

+29993
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

747 files changed

+29993
-1
lines changed

assets/js/src/core/modules/application-logger/components/detail-modal/detail-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const DetailModal = (props: DetailModalProps): React.JSX.Element => {
3737
const formData = {
3838
date: props.data?.date ?? '',
3939
message: props.data?.message ?? '',
40-
priority: props.data?.priority ?? '',
40+
priority: t(`application-logger.filter.priority-level.${props.data?.priority ?? ''}`),
4141
component: props.data?.component ?? '',
4242
source: props.data?.source ?? '',
4343
fileObject: props.data?.relatedElementData ?? null

public/build/4fd880aa-9b20-4abc-a5c2-e212515c0779/entrypoints.json

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/4fd880aa-9b20-4abc-a5c2-e212515c0779/exposeRemote.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/4fd880aa-9b20-4abc-a5c2-e212515c0779/index.html

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/4fd880aa-9b20-4abc-a5c2-e212515c0779/manifest.json

Lines changed: 811 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)