Adjust all calls

This commit is contained in:
Iván Ovejero
2021-12-07 15:58:26 +01:00
parent c5ef97a30b
commit 7805b21a15
71 changed files with 770 additions and 747 deletions

View File

@@ -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');
},
},
});