Skip to content

Commit

Permalink
refactor(CustomConfig): update placheolder for raw input
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-cline committed Jan 4, 2024
1 parent 98807cf commit 983ca68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/manager/components/deployment/CustomConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default class CustomConfig extends Component<{
<FormControl
componentClass='textarea'
style={{height: '125px'}}
placeholder='{"blah": true}'
placeholder='{"property": true}'
onChange={e => this._onChangeConfig(e, CONFIG_OPTIONS.custom)}
value={value} />
{!validJSON && <HelpBlock>Must provide valid JSON string.</HelpBlock>}
Expand Down
2 changes: 1 addition & 1 deletion lib/manager/components/deployment/CustomFileEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ export default class CustomFileEditor extends Component<Props, {
componentClass='textarea'
disabled={!isEditing}
style={{height: '125px'}}
placeholder='{"blah": true}'
placeholder='{"property": true}'
onChange={this._onChangeContents}
value={customFile.contents}
/>
Expand Down

0 comments on commit 983ca68

Please sign in to comment.