Skip to content

Commit 1cc90ac

Browse files
committed
improve nls
1 parent d60f8f4 commit 1cc90ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/src/components/ActivityBar/ActivityItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const meta = computed(() => store.metaForId(props.id));
9494
</span>
9595
<FontAwesomeIcon :icon="icon" />
9696
</div>
97-
<TextShort v-if="title" :text="localize(title)" class="nav-title" />
97+
<TextShort v-if="title" :text="title" class="nav-title" />
9898
</b-nav-item>
9999
</template>
100100
<div class="text-center px-2 py-1">

client/src/components/Form/FormInputs.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:class="{ 'bordered-input': syncWithGraph && activeNodeId === index }">
77
<div v-if="input.type == 'conditional'" class="ui-portlet-section mt-3">
88
<div class="portlet-header">
9-
<b>{{ localize(input.test_param.label || input.test_param.name) }}</b>
9+
<b v-localize>{{ input.test_param.label || input.test_param.name }}</b>
1010
</div>
1111
<div class="portlet-content">
1212
<FormElement

client/src/components/Workflow/Run/WorkflowRunForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</b-button>
2121
<ButtonSpinner
2222
id="run-workflow"
23-
title="localize('Run Workflow')"
23+
:title="localize('Run Workflow')"
2424
:tooltip="runButtonTooltip"
2525
:disabled="!canRunOnHistory || hasCredentialErrors"
2626
:wait="showExecuting"

0 commit comments

Comments
 (0)