Skip to content

Commit

Permalink
Fix default route prefix in js - missing trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
talvbansal committed Jun 24, 2017
1 parent 72ee7b4 commit 7318f74
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions public/js/media-manager.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/assets/js/components/ConfirmDeleteModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* Default route prefix
*/
prefix: {
default : '/admin'
default : '/admin/'
},
show:{
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/js/components/CreateFolderModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* Default route prefix
*/
prefix: {
default : '/admin'
default : '/admin/'
},
show:{
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/js/components/MediaManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
* Default route prefix
*/
prefix: {
default : '/admin'
default : '/admin/'
},
/**
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/js/components/MoveItemModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
* Default route prefix
*/
prefix: {
default : '/admin'
default : '/admin/'
},
show:{
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/js/components/RenameItemModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
* Default route prefix
*/
prefix: {
default : '/admin'
default : '/admin/'
},
show:{
Expand Down

0 comments on commit 7318f74

Please sign in to comment.