aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/SkipNoticeComponent.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/SkipNoticeComponent.tsx')
-rw-r--r--src/components/SkipNoticeComponent.tsx14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/components/SkipNoticeComponent.tsx b/src/components/SkipNoticeComponent.tsx
index 1582c2c9..f8269e88 100644
--- a/src/components/SkipNoticeComponent.tsx
+++ b/src/components/SkipNoticeComponent.tsx
@@ -313,11 +313,15 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta
for (let i = 0; i < this.state.messages.length; i++) {
elements.push(
- <NoticeTextSelectionComponent idSuffix={this.idSuffix}
- text={this.state.messages[i]}
- onClick={this.state.messageOnClick}
- key={i}>
- </NoticeTextSelectionComponent>
+ <tr>
+ <td>
+ <NoticeTextSelectionComponent idSuffix={this.idSuffix}
+ text={this.state.messages[i]}
+ onClick={this.state.messageOnClick}
+ key={i + "_messageBox"}>
+ </NoticeTextSelectionComponent>
+ </td>
+ </tr>
)
}