Clarify "Delete share" action in sharing sidebar (#18563)
Clarify "Delete share" action in sharing sidebar
This commit is contained in:
commit
88a24d7d12
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -121,7 +121,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<ActionButton v-if="share.canDelete"
|
<ActionButton v-if="share.canDelete"
|
||||||
icon="icon-delete"
|
icon="icon-close"
|
||||||
:disabled="saving"
|
:disabled="saving"
|
||||||
@click.prevent="onDelete">
|
@click.prevent="onDelete">
|
||||||
{{ t('files_sharing', 'Unshare') }}
|
{{ t('files_sharing', 'Unshare') }}
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
{{ t('files_sharing', 'Via folder') }}
|
{{ t('files_sharing', 'Via folder') }}
|
||||||
</ActionLink>
|
</ActionLink>
|
||||||
<ActionButton v-if="share.canDelete"
|
<ActionButton v-if="share.canDelete"
|
||||||
icon="icon-delete"
|
icon="icon-close"
|
||||||
@click.prevent="onDelete">
|
@click.prevent="onDelete">
|
||||||
{{ t('files_sharing', 'Unshare') }}
|
{{ t('files_sharing', 'Unshare') }}
|
||||||
</actionbutton>
|
</actionbutton>
|
||||||
|
|
|
@ -257,10 +257,10 @@
|
||||||
</ActionLink>
|
</ActionLink>
|
||||||
|
|
||||||
<ActionButton v-if="share.canDelete"
|
<ActionButton v-if="share.canDelete"
|
||||||
icon="icon-delete"
|
icon="icon-close"
|
||||||
:disabled="saving"
|
:disabled="saving"
|
||||||
@click.prevent="onDelete">
|
@click.prevent="onDelete">
|
||||||
{{ t('files_sharing', 'Delete share') }}
|
{{ t('files_sharing', 'Unshare') }}
|
||||||
</ActionButton>
|
</ActionButton>
|
||||||
<ActionButton v-if="!isEmailShareType && canReshare"
|
<ActionButton v-if="!isEmailShareType && canReshare"
|
||||||
class="new-share-link"
|
class="new-share-link"
|
||||||
|
|
Loading…
Reference in New Issue