feat: add cancel button with localized text to AddNewPlatform and update close button in AddNewProvider

fixes: #2889
This commit is contained in:
Soulter
2025-09-27 20:41:45 +08:00
parent c2a34475f1
commit 524285f767
2 changed files with 5 additions and 3 deletions
@@ -31,6 +31,10 @@
</v-col>
</v-row>
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn text @click="closeDialog">{{ tm('dialog.cancel') }}</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
@@ -63,9 +63,7 @@
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn text @click="closeDialog">
Close
</v-btn>
<v-btn text @click="closeDialog">{{ tm('dialogs.config.cancel') }}</v-btn>
</v-card-actions>
</v-card>
</v-dialog>