mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Enterprise Search] Fix custom connector not selectable (#156523)
## Summary Custom connector has empty string "" as service type and it is nullish in JS/TS. Selection is fixed and Continue button is now selectable for custom connectors by checking value to be null instead. Before: https://user-images.githubusercontent.com/1410658/235914298-c8230681-3520-4e08-b364-e65237661aec.mov After: https://user-images.githubusercontent.com/1410658/235914179-3f655131-b5bf-454e-b3ab-384863a21607.mov
This commit is contained in:
parent
77cebee6f7
commit
605e9caef7
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ export const SelectConnector: React.FC = () => {
|
|||
<EuiButton
|
||||
data-test-subj="entSearchContent-connector-selectConnector-selectAndConfigure"
|
||||
data-telemetry-id="entSearchContent-connector-selectConnector-selectAndConfigure"
|
||||
disabled={!selectedConnector}
|
||||
disabled={selectedConnector === null}
|
||||
fill
|
||||
color="primary"
|
||||
type="submit"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue