mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix renaming
This commit is contained in:
parent
ab840e7bb2
commit
f5df535797
|
@ -9,12 +9,11 @@
|
|||
@keydown.esc="editName = false"
|
||||
>
|
||||
<n8n-text :class="$style.renameText" :bold="true" color="text-base" tag="div"
|
||||
>Rename node</n8n-text
|
||||
>
|
||||
>{{ $locale.baseText('node.title.renameNode') }}</n8n-text>
|
||||
<n8n-input ref="input" size="small" v-model="newName" />
|
||||
<div :class="$style.editButtons">
|
||||
<n8n-button type="outline" size="small" @click="editName = false" label="Cancel" />
|
||||
<n8n-button type="primary" size="small" @click="onRename" label="Rename" />
|
||||
<n8n-button type="outline" size="small" @click="editName = false" :label="$locale.baseText('node.title.cancel')" />
|
||||
<n8n-button type="primary" size="small" @click="onRename" :label="$locale.baseText('node.title.rename')" />
|
||||
</div>
|
||||
</div>
|
||||
<span :class="$style.title" slot="reference">
|
||||
|
|
|
@ -1143,6 +1143,9 @@
|
|||
"forgotPassword.returnToSignIn": "Back to sign in",
|
||||
"forgotPassword.sendingEmailError": "Problem sending email",
|
||||
"forgotPassword.smtpErrorContactAdministrator": "Please contact your administrator (problem with your SMTP setup)",
|
||||
"node.title.rename": "Rename",
|
||||
"node.title.cancel": "Cancel",
|
||||
"node.title.renameNode": "Rename node",
|
||||
"openWorkflow.workflowImportError": "Could not import workflow",
|
||||
"openWorkflow.workflowNotFoundError": "Could not find workflow",
|
||||
"settings": "Settings",
|
||||
|
|
Loading…
Reference in a new issue