From 033927c040b30970ec0b15c99ff9c0661b3269b5 Mon Sep 17 00:00:00 2001 From: Fox Date: Fri, 21 Jul 2023 23:51:13 +0900 Subject: [PATCH] possibly fix bug where sometimes poll is 10 minutes --- src/components/poll/poll_form.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/poll/poll_form.js b/src/components/poll/poll_form.js index 7ad07360..70950fc0 100644 --- a/src/components/poll/poll_form.js +++ b/src/components/poll/poll_form.js @@ -62,8 +62,8 @@ export default { clear () { this.pollType = 'single' this.options = ['', ''] - this.expiryAmount = 10 - this.expiryUnit = 'minutes' + this.expiryAmount = 24 + this.expiryUnit = 'hours' }, nextOption (index) { const element = this.$el.querySelector(`#poll-${index + 1}`)