Skip to content

Commit

Permalink
fix: Use actual computed value for the URL
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliushaertl committed Dec 7, 2023
1 parent 8d51617 commit d817b98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/sidebar/sections/SidebarIntegration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
methods: {
copyUrl() {
if (navigator?.clipboard) {
navigator.clipboard.writeText(this.webdavUrl).then(function() {
navigator.clipboard.writeText(this.apiEndpointUrl).then(function() {
showSuccess(t('files', 'Integration URL copied to clipboard'))
}, function(err) {
showError(t('files', 'Clipboard is not available'))
Expand Down

0 comments on commit d817b98

Please sign in to comment.