Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Albums/CollaboratorsSelectionForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@
<div v-if="allowPublicLink" class="actions__public-link">
<template v-if="publicLink">
<NcButton class="manage-collaborators__public-link-button"
type="tertiary-no-background"
@click="copyPublicLink">
<template v-if="publicLinkCopied">
{{ t('photos', 'Public link copied!') }}
Expand All @@ -101,7 +100,6 @@
</template>
<NcButton v-else
class="manage-collaborators__public-link-button"
type="tertiary-no-background"
@click="createPublicLinkForAlbum">
<Earth slot="icon" />
{{ t('photos', 'Share via public link') }}
Expand All @@ -118,6 +116,7 @@
<script>
import Magnify from 'vue-material-design-icons/Magnify'
import Close from 'vue-material-design-icons/Close'
import Earth from 'vue-material-design-icons/Earth'

import axios from '@nextcloud/axios'
import { showError } from '@nextcloud/dialogs'
Expand All @@ -141,6 +140,7 @@ export default {
components: {
Magnify,
Close,
Earth,
NcLoadingIcon,
NcButton,
NcListItemIcon,
Expand Down