Skip to content

Commit cea7d5f

Browse files
fix: standardize variable checkbox label
1 parent 3f84234 commit cea7d5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/src/components/applications/EnvironmentVariablesEditor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function valueFor(item: DetectedVariable) { return props.modelValue.find((variab
4747
placeholder="Valor"
4848
:type="draft.secret ? 'password' : 'text'"
4949
/>
50-
<Checkbox v-model="draft.secret" label="Secret" />
50+
<Checkbox v-model="draft.secret" label="Variável secreta" />
5151
<button class="secondary" type="button" @click="add">Adicionar</button>
5252
</div>
5353
<p v-if="!modelValue.length" class="muted">Nenhuma variável configurada.</p>

0 commit comments

Comments
 (0)