Skip to content

Commit 496ab29

Browse files
committed
Fix spacing issues in media manager
1 parent e79458a commit 496ab29

File tree

2 files changed

+8
-8
lines changed
  • administrator/components/com_media/resources/scripts/components/browser/items

2 files changed

+8
-8
lines changed

administrator/components/com_media/resources/scripts/components/browser/items/image.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
/* Opening confirm delete modal */
115115
openConfirmDeleteModal(){
116116
this.$store.commit(types.UNSELECT_ALL_BROWSER_ITEMS);
117-
this.$store.commit(types.SELECT_BROWSER_ITEM, this.item);
117+
this.$store.commit(types.SELECT_BROWSER_ITEM, this.item);
118118
this.$store.commit(types.SHOW_CONFIRM_DELETE_MODAL);
119119
},
120120
/* Rename an item */

administrator/components/com_media/resources/scripts/components/browser/items/video.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@
9090
this.$store.commit(types.SHOW_PREVIEW_MODAL);
9191
this.$store.dispatch('getFullContents', this.item);
9292
},
93-
/* Preview an item */
94-
download() {
95-
this.$store.dispatch('download', this.item);
96-
},
93+
/* Preview an item */
94+
download() {
95+
this.$store.dispatch('download', this.item);
96+
},
9797
/* Opening confirm delete modal */
9898
openConfirmDeleteModal(){
99-
this.$store.commit(types.UNSELECT_ALL_BROWSER_ITEMS);
100-
this.$store.commit(types.SELECT_BROWSER_ITEM, this.item);
101-
this.$store.commit(types.SHOW_CONFIRM_DELETE_MODAL);
99+
this.$store.commit(types.UNSELECT_ALL_BROWSER_ITEMS);
100+
this.$store.commit(types.SELECT_BROWSER_ITEM, this.item);
101+
this.$store.commit(types.SHOW_CONFIRM_DELETE_MODAL);
102102
},
103103
/* Rename an item */
104104
openRenameModal() {

0 commit comments

Comments
 (0)