We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e614ff commit 298f880Copy full SHA for 298f880
CHANGELOG.md
@@ -5,6 +5,7 @@
5
6
### Client
7
- Fix: アプリ内からキャッシュをクリアするとテーマ再適用するまでレンダリングが正しく行われない問題を修正
8
+- Fix: 期限が無期限のアンケートに投票できない問題を修正
9
10
### Server
11
-
packages/frontend/src/components/MkPoll.vue
@@ -58,7 +58,7 @@ const remaining = computed(() => {
58
});
59
60
const total = computed(() => sum(props.choices.map(x => x.votes)));
61
-const closed = computed(() => remaining.value <= 0);
+const closed = computed(() => props.expiresAt != null && remaining.value <= 0);
62
const isVoted = computed(() => !props.multiple && props.choices.some(c => c.isVoted));
63
const timer = computed(() => i18n.tsx._poll[
64
remaining.value >= 86400 ? 'remainingDays' :
0 commit comments