Skip to content

Commit

Permalink
Show that naming an annotation is required
Browse files Browse the repository at this point in the history
  • Loading branch information
ckitsanelis committed Sep 29, 2023
1 parent 4abc977 commit 31f5f81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/viewer/rules/Dialogs/FlagsDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ export default class FlagsDialog extends React.Component<Props, State> {
style={{ width: textFieldWidth, marginBottom: "2px" }}
value={rule.column}
key="Name"
placeholder="Required"
onInput={(e) =>
this.updateRule(rule.setColumn(e.target.value), ruleIndex)
}
Expand Down
1 change: 1 addition & 0 deletions src/viewer/rules/Dialogs/StatesDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ export default class StatesDialog extends React.Component<Props, State> {
style={{ width: textFieldWidth, marginBottom: "2px" }}
value={rule.column}
key="Name"
placeholder="Required"
onInput={(e) =>
this.updateRule(rule.setColumn(e.target.value), ruleIndex)
}
Expand Down

0 comments on commit 31f5f81

Please sign in to comment.