Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2020-02-28 08:01:31 +0300
committerdartcafe <github@dartcafe.de>2020-02-28 08:01:31 +0300
commitde9bee19a4b046f256108b1a758f37df8b95b838 (patch)
treeb466eb981c7a27c4347748cb733cd4f46046fbd8 /src/js/views/PollList.vue
parentf340057a0b92a726219c2f15b7967e188fd74466 (diff)
moved import loadingOverlay from main to components
Diffstat (limited to 'src/js/views/PollList.vue')
-rw-r--r--src/js/views/PollList.vue2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/js/views/PollList.vue b/src/js/views/PollList.vue
index 91640262..880b9089 100644
--- a/src/js/views/PollList.vue
+++ b/src/js/views/PollList.vue
@@ -51,12 +51,14 @@ import { AppContent } from '@nextcloud/vue'
import PollListItem from '../components/PollList/PollListItem'
import { mapGetters } from 'vuex'
import sortBy from 'lodash/sortBy'
+import LoadingOverlay from '../components/Base/LoadingOverlay'
export default {
name: 'PollList',
components: {
AppContent,
+ LoadingOverlay,
PollListItem
},