Skip to content

Commit a646dae

Browse files
committed
fix context menu - select
1 parent db0eaa1 commit a646dae

File tree

4 files changed

+854
-792
lines changed

4 files changed

+854
-792
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "laravel-file-manager",
3-
"version": "2.4.0",
3+
"version": "2.4.2",
44
"description": "File manager for Laravel",
55
"keywords": [
66
"laravel",

src/components/blocks/mixins/contextMenuActions.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ export default {
6969
this.$store.dispatch('fm/url', {
7070
disk: this.selectedDisk,
7171
path: this.selectedItems[0].path,
72+
}).then((response) => {
73+
if (response.data.result.status === 'success') {
74+
this.$store.state.fm.fileCallback(response.data.url);
75+
}
7276
});
7377
},
7478

src/store/settings/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default {
1616
acl: null,
1717

1818
// App version
19-
version: '2.4.0',
19+
version: '2.4.2',
2020

2121
// axios headers
2222
headers: {},

0 commit comments

Comments
 (0)