Skip to content

Commit

Permalink
fix: improve space deletion confirmation message
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Jan 17, 2024
1 parent 5880ed6 commit 0d9ecd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/locales/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@
"settings": {
"header": "Settings",
"confirmLeaveMessage": " Do you really want to leave? You have unsaved changes that will be lost.",
"confirmDeleteSpace": " Do you really want to delete this space? This action cannot be undone and you will not be able to create a new space with the same ENS domain name.",
"confirmDeleteSpace": " Do you really want to delete this space? This action cannot be undone and you will not be able to use {name} again to create another space.",
"validationErrorsMessage": "Please fix the following fields before saving:",
"confirmInputDeleteSpace": "Enter {space} to continue:",
"noticeSavedTitle": "Settings saved",
Expand Down
2 changes: 1 addition & 1 deletion src/views/SpaceSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ onBeforeRouteLeave(async () => {
@confirm="handleDelete"
>
<BaseMessageBlock level="warning-red" class="m-4">
{{ $t('settings.confirmDeleteSpace') }}
{{ $t('settings.confirmDeleteSpace', { name: space.id }) }}
</BaseMessageBlock>
<div class="px-4 pb-4">
<BaseInput
Expand Down

0 comments on commit 0d9ecd2

Please sign in to comment.