Skip to content

Commit f53e22d

Browse files
authored
add comma (misskey-dev#13746)
1 parent 6abb8c4 commit f53e22d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/frontend/src/pages/flash/flash-edit.vue

+7-7
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,11 @@ var cursor = 0
163163
text: "←"
164164
disabled: !(results.len > 1 && (results.len - cursor) > 1)
165165
onClick: back
166-
} {
166+
}, {
167167
text: "→"
168168
disabled: !(results.len > 1 && cursor > 0)
169169
onClick: forward
170-
} {
170+
}, {
171171
text: "引き直す"
172172
onClick: do
173173
}]
@@ -196,17 +196,17 @@ let qas = [{
196196
choices: ['シドニー', 'キャンベラ', 'メルボルン']
197197
a: 'キャンベラ'
198198
aDescription: '最大の都市はシドニーですが首都はキャンベラです。'
199-
} {
199+
}, {
200200
q: '国土面積2番目の国は?'
201201
choices: ['カナダ', 'アメリカ', '中国']
202202
a: 'カナダ'
203203
aDescription: '大きい順にロシア、カナダ、アメリカ、中国です。'
204-
} {
204+
}, {
205205
q: '二重内陸国ではないのは?'
206206
choices: ['リヒテンシュタイン', 'ウズベキスタン', 'レソト']
207207
a: 'レソト'
208208
aDescription: 'レソトは(一重)内陸国です。'
209-
} {
209+
}, {
210210
q: '閘門がない運河は?'
211211
choices: ['キール運河', 'スエズ運河', 'パナマ運河']
212212
a: 'スエズ運河'
@@ -244,9 +244,9 @@ each (let qa, qas) {
244244
})
245245
Ui:C:container({
246246
children: []
247-
} \`{qa.id}:a\`)
247+
}, \`{qa.id}:a\`)
248248
]
249-
} qa.id))
249+
}, qa.id))
250250
}
251251

252252
@finish() {

0 commit comments

Comments
 (0)