[8.x] [Search] Fix autogenerated connector names (#197585) (#197769)

# Backport

This will backport the following commits from `main` to `8.x`:
- [[Search] Fix autogenerated connector names
(#197585)](https://github.com/elastic/kibana/pull/197585)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Navarone
Feekery","email":"13634519+navarone-feekery@users.noreply.github.com"},"sourceCommit":{"committedDate":"2024-10-25T07:53:16Z","message":"[Search]
Fix autogenerated connector names (#197585)\n\nImprove the autogenerated
connector names by\r\n\r\n- Re-generating names when changing connector
source\r\n- Preventing editing of names after connector is
created","sha":"c05e1c58ab7677bf082dc11da040a0c3be4d6498","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["bug","release_note:skip","v9.0.0","Team:Search","backport:prev-major","v8.16.0","v8.17.0"],"title":"[Search]
Fix autogenerated connector
names","number":197585,"url":"https://github.com/elastic/kibana/pull/197585","mergeCommit":{"message":"[Search]
Fix autogenerated connector names (#197585)\n\nImprove the autogenerated
connector names by\r\n\r\n- Re-generating names when changing connector
source\r\n- Preventing editing of names after connector is
created","sha":"c05e1c58ab7677bf082dc11da040a0c3be4d6498"}},"sourceBranch":"main","suggestedTargetBranches":["8.16","8.x"],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/197585","number":197585,"mergeCommit":{"message":"[Search]
Fix autogenerated connector names (#197585)\n\nImprove the autogenerated
connector names by\r\n\r\n- Re-generating names when changing connector
source\r\n- Preventing editing of names after connector is
created","sha":"c05e1c58ab7677bf082dc11da040a0c3be4d6498"}},{"branch":"8.16","label":"v8.16.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"8.x","label":"v8.17.0","branchLabelMappingKey":"^v8.17.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}]
BACKPORT-->

Co-authored-by: Navarone Feekery <13634519+navarone-feekery@users.noreply.github.com>
This commit is contained in:
Kibana Machine 2024-10-25 20:32:28 +11:00 committed by GitHub
parent a7b19ba22e
commit b2d554e253
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View file

@ -106,6 +106,7 @@ export const StartStep: React.FC<StartStepProps> = ({
name="first"
value={rawName}
onChange={handleNameChange}
disabled={!!connector}
onBlur={() => {
if (selectedConnector) {
generateConnectorName({

View file

@ -143,9 +143,7 @@ export const NewConnectorLogic = kea<MakeLogicType<NewConnectorValues, NewConnec
}
},
connectorNameGenerated: ({ connectorName }) => {
if (!values.rawName) {
actions.setRawName(connectorName);
}
actions.setRawName(connectorName);
},
createConnector: ({
isSelfManaged,
@ -191,7 +189,6 @@ export const NewConnectorLogic = kea<MakeLogicType<NewConnectorValues, NewConnec
setSelectedConnector: ({ connector }) => {
if (connector) {
actions.generateConnectorName({
connectorName: values.rawName,
connectorType: connector.serviceType,
});
}