mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
⚡ Adjust all calls
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<span :class="$style.container">
|
||||
<span :class="$style.saved" v-if="saved">{{ $baseText('saveButton.saved') }}</span>
|
||||
<span :class="$style.saved" v-if="saved">{{ $i18n2.baseText('saveButton.saved') }}</span>
|
||||
<n8n-button
|
||||
v-else
|
||||
:label="saveButtonLabel"
|
||||
@@ -41,8 +41,8 @@ export default mixins(renderText).extend({
|
||||
computed: {
|
||||
saveButtonLabel() {
|
||||
return this.isSaving
|
||||
? this.$baseText('saveButton.saving')
|
||||
: this.$baseText('saveButton.save');
|
||||
? this.$i18n2.baseText('saveButton.saving')
|
||||
: this.$i18n2.baseText('saveButton.save');
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user