Skip to content

Commit 3e4c549

Browse files
committed
npmignore
1 parent 50c6c7f commit 3e4c549

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

.npmignore

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
.idea
1+
#dirs
2+
build/
3+
config/
4+
dist/
5+
6+
#linters
7+
.eslintrc*
8+
.eslintignore
9+
10+
.postcssrc.js
11+
12+
#babel
13+
.babelrc
14+
15+
#editor settings
16+
.idea
17+
.editorconfig

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": "1.0.1",
3+
"version": "1.0.2",
44
"description": "File manager for Laravel",
55
"keywords": [
66
"laravel",

src/components/modals/NewFolder.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ export default {
6666
this.$store.dispatch('fm/createDirectory', this.directoryName).then((response) => {
6767
// if new directory created successfully
6868
if (response.data.result.status === 'success') {
69-
// clear directory name
70-
this.directoryName = '';
69+
// close modal window
70+
this.hideModal();
7171
}
7272
});
7373
},

0 commit comments

Comments
 (0)