Skip to content

Commit

Permalink
change close button and remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ssrahn committed Oct 19, 2023
1 parent 61f9a73 commit 4f0a6b6
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions vueapp/components/Videos/Actions/VideoAccess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
<div>
<StudipDialog
:title="$gettext('Video freigeben')"
:confirmText="$gettext('Abschließen')"
:confirmClass="'accept'"
:closeText="$gettext('Schließen')"
:closeClass="'cancel'"
height="600"
width="600"
@close="$emit('done', 'refresh')"
@confirm="$emit('done', 'refresh')"
>
<template v-slot:dialogContent>
<form class="default">
Expand Down Expand Up @@ -163,7 +162,6 @@ export default {
.catch((er) => {
this.shareUsers.pop();
this.$store.dispatch('addMessage', this.$gettext('Beim Hinzufügen der Freigabe ist ein Fehler aufgetreten.'));
console.log('Error while creating access perm!', er);
})
},
Expand All @@ -178,7 +176,6 @@ export default {
.catch((er) => {
this.videoShares.perms.splice(index, 0, perm);
this.$store.dispatch('addMessage', this.$gettext('Beim Löschen der Freigabe ist ein Fehler aufgetreten.'));
console.log('Error while removing access perm!', er);
})
},
Expand All @@ -196,7 +193,6 @@ export default {
this.initVideoShares();
}).catch((er) => {
this.$store.dispatch('addMessage', this.$gettext('Beim Hinzufügen des Links ist ein Fehler aufgetreten.'));
console.log('Error while creating share link!', er);
});
},
Expand Down

0 comments on commit 4f0a6b6

Please sign in to comment.