Revert "Resolves @jamegeorge007 's Review"

This reverts commit 57860c17d9.
This commit is contained in:
athul
2019-11-26 19:03:06 +05:30
parent 57860c17d9
commit cb8734bba7
4 changed files with 2 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ export default {
}; };
}, },
watch: { watch: {
"requestUpdateData.collectionIndex": function resetFolderIndex() { "requestUpdateData.collectionIndex": ()=> { //resetFolderIndex Function
// if user choosen some folder, than selected other collection, which doesn't have any folders // if user choosen some folder, than selected other collection, which doesn't have any folders
// than `requestUpdateData.folderIndex` won't be reseted // than `requestUpdateData.folderIndex` won't be reseted
this.$data.requestUpdateData.folderIndex = undefined; this.$data.requestUpdateData.folderIndex = undefined;

View File

@@ -119,7 +119,7 @@ export default {
this.$data.requestData.folderIndex = undefined; this.$data.requestData.folderIndex = undefined;
this.$data.requestData.requestIndex = undefined; this.$data.requestData.requestIndex = undefined;
}, },
"requestData.folderIndex": function resetRequestIndex() { "requestData.folderIndex": ()=> {
this.$data.requestData.requestIndex = undefined; this.$data.requestData.requestIndex = undefined;
} }
}, },