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>2022-09-04 11:04:40 +0300
committerdartcafe <github@dartcafe.de>2022-09-09 09:17:59 +0300
commit7eda2b5ee54450f0be296cf9491f0645ae9e73aa (patch)
tree8ef25251150ccd6f83feb6dc712dda20b320b9f5 /src/js/components
parentd2280d44a16038c2e352ca978a411d442724f6d6 (diff)
last ones
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components')
-rw-r--r--src/js/components/Configuration/ConfigAutoReminder.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/js/components/Configuration/ConfigAutoReminder.vue b/src/js/components/Configuration/ConfigAutoReminder.vue
index 2a514424..cb9963a8 100644
--- a/src/js/components/Configuration/ConfigAutoReminder.vue
+++ b/src/js/components/Configuration/ConfigAutoReminder.vue
@@ -25,7 +25,7 @@
<NcCheckboxRadioSwitch :checked.sync="autoReminder" type="switch">
{{ t('polls', 'Use Autoreminder') }}
</NcCheckboxRadioSwitch>
- <Popover>
+ <NcPopover>
<template #trigger>
<NcActions>
<NcActionButton icon="icon-info">
@@ -34,13 +34,13 @@
</NcActions>
</template>
<AutoReminderInformation />
- </Popover>
+ </NcPopover>
</div>
</template>
<script>
import { mapState } from 'vuex'
-import { NcActions, NcActionButton, Popover, NcCheckboxRadioSwitch } from '@nextcloud/vue'
+import { NcActions, NcActionButton, NcPopover, NcCheckboxRadioSwitch } from '@nextcloud/vue'
export default {
name: 'ConfigAutoReminder',
@@ -49,7 +49,7 @@ export default {
NcCheckboxRadioSwitch,
NcActions,
NcActionButton,
- Popover,
+ NcPopover,
AutoReminderInformation: () => import('./AutoReminderInformation.vue'),
},