Skip to content

Commit ccd4229

Browse files
committed
fix: Use actual computed value for the URL
Signed-off-by: Julius Härtl <jus@bitgrid.net>
1 parent bcf740a commit ccd4229

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/modules/sidebar/sections/SidebarIntegration.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default {
7777
methods: {
7878
copyUrl() {
7979
if (navigator?.clipboard) {
80-
navigator.clipboard.writeText(this.webdavUrl).then(function() {
80+
navigator.clipboard.writeText(this.apiEndpointUrl).then(function() {
8181
showSuccess(t('files', 'Integration URL copied to clipboard'))
8282
}, function(err) {
8383
showError(t('files', 'Clipboard is not available'))

0 commit comments

Comments
 (0)