Skip to content

Commit 6a2f35f

Browse files
committed
fix(ui): use i18n t() for Node option in exec approvals target select
1 parent be7a415 commit 6a2f35f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/src/ui/views/nodes-exec-approvals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ function renderExecApprovalsTarget(state: ExecApprovalsState) {
256256
}}
257257
>
258258
<option value="gateway" ?selected=${state.target === "gateway"}>Gateway</option>
259-
<option value="node" ?selected=${state.target === "node"}>Node</option>
259+
<option value="node" ?selected=${state.target === "node"}>${t("nodes.binding.node")}</option>
260260
</select>
261261
</label>
262262
${state.target === "node"

0 commit comments

Comments
 (0)