Skip to content

Commit 983ca68

Browse files
committed
refactor(CustomConfig): update placheolder for raw input
1 parent 98807cf commit 983ca68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/manager/components/deployment/CustomConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export default class CustomConfig extends Component<{
152152
<FormControl
153153
componentClass='textarea'
154154
style={{height: '125px'}}
155-
placeholder='{"blah": true}'
155+
placeholder='{"property": true}'
156156
onChange={e => this._onChangeConfig(e, CONFIG_OPTIONS.custom)}
157157
value={value} />
158158
{!validJSON && <HelpBlock>Must provide valid JSON string.</HelpBlock>}

lib/manager/components/deployment/CustomFileEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export default class CustomFileEditor extends Component<Props, {
282282
componentClass='textarea'
283283
disabled={!isEditing}
284284
style={{height: '125px'}}
285-
placeholder='{"blah": true}'
285+
placeholder='{"property": true}'
286286
onChange={this._onChangeContents}
287287
value={customFile.contents}
288288
/>

0 commit comments

Comments
 (0)