Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion src/components/files/WebDavUrl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</template>
</NcInputField>
<p id="webdav-info">
{{ t('simplesettings', 'EasyStorage fully supports the WebDAV protocol and you can connect and synchronise with your EasyStorage files via WebDAV. Use this address to access your files via WebDAV.') }}
{{ webdavInfo }}
</p>
</div>
</template>
Expand All @@ -56,8 +56,8 @@
import type { NextcloudUser } from '@nextcloud/auth'
import { defineComponent } from 'vue'
// @ts-expect-error: Cannot find module or its corresponding type declarations.
import NcInputField from '@nextcloud/vue/dist/Components/NcInputField.js'

Check failure on line 59 in src/components/files/WebDavUrl.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Unable to resolve path to module '@nextcloud/vue/dist/Components/NcInputField.js'
import Clipboard from 'vue-material-design-icons/Clipboard.vue'

Check failure on line 60 in src/components/files/WebDavUrl.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Unable to resolve path to module 'vue-material-design-icons/Clipboard.vue'
import { generateRemoteUrl } from '@nextcloud/router'
import { getCurrentUser } from '@nextcloud/auth'
import { showError, showSuccess } from '@nextcloud/dialogs'
Expand All @@ -80,6 +80,11 @@
webdavUrlCopied: false,
}
},
computed: {
webdavInfo() {
return t('simplesettings', '{productName} fully supports the WebDAV protocol and you can connect and synchronise with your {productName} files via WebDAV. Use this address to access your files via WebDAV.', { productName: window.oc_defaults.productName })
},
},
methods: {
t,
async copyCloudId() {
Expand Down
Loading
Loading