Skip to content

Commit

Permalink
Removing unused error variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Oct 8, 2017
1 parent 05c1b61 commit a061e84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/Media/Assets/js/components/MoveMediaDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
this.dialogFormVisible = false;
this.$events.emit('mediaWasMoved', response);
})
.catch((error) => {
.catch(() => {
this.loading = false;
this.$notify.error({
title: 'Error',
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -104232,7 +104232,7 @@ exports.default = {
});
_this.dialogFormVisible = false;
_this.$events.emit('mediaWasMoved', response);
}).catch(function (error) {
}).catch(function () {
_this.loading = false;
_this.$notify.error({
title: 'Error',
Expand Down

0 comments on commit a061e84

Please sign in to comment.