Skip to content

Commit

Permalink
fix(ui/resourceLabelForm): fix ResourceLabelForm invalid default form…
Browse files Browse the repository at this point in the history
… state (#12057)
  • Loading branch information
OfTheDelmer authored and alexpaxton committed Feb 21, 2019
1 parent 9ee6407 commit a8bdc9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/src/clockface/components/label/LabelSelector.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
.label-selector--menu {
width: 100%;
min-height: 50px;
margin: $ix-marg-b;
padding: $ix-marg-b;
}

.label-selector--menu-item {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/shared/components/ResourceLabelForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default class ResourceLabelForm extends PureComponent<Props, State> {
super(props)

this.state = {
isValid: false,
isValid: true,
label: {
name: props.labelName,
properties: {
Expand Down

0 comments on commit a8bdc9c

Please sign in to comment.