Skip to content

Commit 72348d0

Browse files
committed
Add poll note
1 parent 389b27f commit 72348d0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/ui/failsboard.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,11 @@ export class FailsBoard extends FailsBasis {
541541
))
542542
return (
543543
<div key={item.id}>
544-
<h3> {item.name + (item.multi ? ' (multi)' : ' (single)')} </h3>
544+
<h3>
545+
{' '}
546+
{item.name + (item.multi ? ' (multi)' : ' (single)')}
547+
{item.note ? <small> {' ' + item.note} </small> : ''}
548+
</h3>
545549
<ol>{childlist}</ol>
546550
</div>
547551
)

0 commit comments

Comments
 (0)