Skip to content

Commit

Permalink
Remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
JammingBen committed Sep 9, 2022
1 parent 5083a10 commit 57cd9e2
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { computed, defineComponent, unref, watch } from '@vue/composition-api'
import FileLinks from './FileLinks.vue'
import FileShares from './FileShares.vue'
import SpaceMembers from './SpaceMembers.vue'
import { mapActions, mapGetters, mapState } from 'vuex'
import { mapGetters, mapState } from 'vuex'
import { useDebouncedRef, useStore } from 'web-pkg/src/composables'
import { useIncomingParentShare } from '../../../composables/parentShare'
Expand Down Expand Up @@ -85,15 +85,11 @@ export default defineComponent({
if (!ref || !this.$refs[ref]) {
return
}
this.$emit('scrollToElement', { element: this.$refs[ref].$el, panelName })
})
},
immediate: true
}
},
methods: {
...mapActions('Files', ['loadCurrentFileOutgoingShares'])
}
})
</script>

0 comments on commit 57cd9e2

Please sign in to comment.