We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 970eccb commit a033db9Copy full SHA for a033db9
build/app/view/netcreate/components/NodeSelector.jsx
@@ -324,9 +324,7 @@ class NodeSelector extends UNISYS.Component {
324
// Only update if we are the currently active field
325
// otherwise an Edge might be active
326
let { activeAutoCompleteId } = this.AppState('ACTIVEAUTOCOMPLETE');
327
- if ( ! ((activeAutoCompleteId==thisIdentifier) &&
328
- (activeAutoCompleteId=='search'))
329
- ) return;
+ if ( activeAutoCompleteId!==thisIdentifier ) return;
330
331
let formData = this.state.formData;
332
formData.label = data.searchLabel;
@@ -437,7 +435,7 @@ class NodeSelector extends UNISYS.Component {
437
435
.then((newNodeID)=>{
438
436
this.setState({
439
formData: {
440
- label: '',
+ label: label,
441
type: '',
442
info: '',
443
notes: '',
0 commit comments