upload request prototype UI

This commit is contained in:
Čarodej
2022-02-16 16:57:57 +01:00
parent 3fafc811fe
commit 394a7b6baf
197 changed files with 6927 additions and 2738 deletions
+6 -5
View File
@@ -61,13 +61,13 @@ import DragUI from '../components/FilesView/DragUI'
import Alert from '../components/FilesView/Alert'
import { mapGetters } from 'vuex'
import { events } from '../bus'
import router from "../router";
import DesktopSharepageToolbar from "../components/FilesView/DesktopSharepageToolbar";
import router from '../router'
import DesktopSharepageToolbar from '../components/FilesView/DesktopSharepageToolbar'
export default {
name: 'Shared',
components: {
DesktopSharepageToolbar,
DesktopSharepageToolbar,
MobileToolbar,
InfoSidebar,
NavigationSharePanel,
@@ -102,8 +102,9 @@ export default {
events.$on('mobile-menu:show', () => (this.isScaledDown = true))
events.$on('mobile-menu:hide', () => (this.isScaledDown = false))
this.$store.dispatch('getShareDetail', this.$router.currentRoute.params.token)
.then(() => this.$store.dispatch('getFolderTree'))
this.$store
.dispatch('getShareDetail', this.$router.currentRoute.params.token)
.then(() => this.$store.dispatch('getFolderTree'))
},
}
</script>