This is an automated email from the ASF dual-hosted git repository.
SvenO3 pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/dev by this push:
new db3ae5347a fix(#4759): Adapters without a name can be created (#4762)
db3ae5347a is described below
commit db3ae5347aae7fe680b7414c3d7a81b09ae8c6d1
Author: Sven Oehler <[email protected]>
AuthorDate: Thu Jul 23 17:25:36 2026 +0200
fix(#4759): Adapters without a name can be created (#4762)
---
.../adapter-configuration/adapter-configuration.component.ts | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git
a/ui/src/app/connect/components/adapter-configuration/adapter-configuration.component.ts
b/ui/src/app/connect/components/adapter-configuration/adapter-configuration.component.ts
index 5d964b2221..e8947198e8 100644
---
a/ui/src/app/connect/components/adapter-configuration/adapter-configuration.component.ts
+++
b/ui/src/app/connect/components/adapter-configuration/adapter-configuration.component.ts
@@ -121,12 +121,16 @@ export class AdapterConfigurationComponent implements
OnInit, OnDestroy {
}
nextAdapterSettings() {
+ const adapter =
+ this.stateService.state().adapterDescription ??
+ this.adapterDescription;
+
this.shepherdService.trigger('specific-settings-next-button');
this.goForward();
- this.stateService.updateAdapter(this.adapterDescription);
+ this.stateService.updateAdapter(adapter);
- if (this.adapterDescription.transformationConfig.inputs.length == 0) {
- this.stateService.getSampleEvent(this.adapterDescription);
+ if (adapter.transformationConfig.inputs.length == 0) {
+ this.stateService.getSampleEvent(adapter);
}
}