Skip to content

Commit

Permalink
Fixing success message
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Oct 8, 2017
1 parent 8de8ece commit f738d5a
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 @@ -53,7 +53,7 @@
this.loading = false;
this.$message({
type: 'success',
message: response.message,
message: response.data.message,
});
this.dialogFormVisible = false;
this.$events.emit('mediaWasUpdated', response);
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -106745,7 +106745,7 @@ exports.default = {
_this.loading = false;
_this.$message({
type: 'success',
message: response.message
message: response.data.message
});
_this.dialogFormVisible = false;
_this.$events.emit('mediaWasUpdated', response);
Expand Down

0 comments on commit f738d5a

Please sign in to comment.