4a. import content from WP ; change design to reflect 4a
This commit is contained in:
@@ -25,7 +25,7 @@ class LaunchRequest extends Component {
|
||||
<TextField
|
||||
id="invocation name"
|
||||
lineDirection="center"
|
||||
placeholder="Saburly"
|
||||
placeholder="saburly"
|
||||
label="Invocation name"
|
||||
className="md-cell md-cell--bottom InvocationInputBoxes"
|
||||
maxLength={INVOCATION_NAME_MAX_LENGTH}
|
||||
@@ -52,7 +52,7 @@ class LaunchRequest extends Component {
|
||||
}
|
||||
|
||||
handleNameEdit(e){
|
||||
if (e.length === INVOCATION_NAME_MAX_LENGTH || !(/^[a-z,.' ]*$/i.test(e))) return;
|
||||
if (e.length === INVOCATION_NAME_MAX_LENGTH || !(/^[a-z,.' ]*$/.test(e))) return;
|
||||
this.setState({invocationName: e});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user