Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
* Github: [PR-579](https://github.com/pegasystems/angular-sdk-components/pull/579)
* **Fixed the issue where changing a property value on the screen was not reflected in the list below.**
* Github: [PR-581](https://github.com/pegasystems/angular-sdk-components/pull/581)
* **Fixed search form label issue, fallback to inherited label when config label is missing.**
* Github: [PR-581](https://github.com/pegasystems/angular-sdk-components/pull/582)

# [25.1.13](https://github.com/pegasystems/angular-sdk/tree/release/25.1.13) - Released: 12/06/2026

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="search-form" style="display: flex; flex-direction: column">
<h5>{{ propsToUse.label }}</h5>
<h3>{{ label$ }}</h3>
<div *ngIf="searchCategoriesComp === 'dropdown'">
<mat-form-field class="psdk-full-width">
<mat-select [value]="currentTabId" (selectionChange)="handleTabClick($event.value)">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export class SearchFormComponent implements OnInit, OnChanges {
tabItems: any[] = [];
searchCategoriesComp: any;
propsToUse: any;
label$: string;
tabData: any = [];
tabCountSources: any;
deferLoadedTabs: any;
Expand All @@ -59,6 +60,7 @@ export class SearchFormComponent implements OnInit, OnChanges {
this.isInitialized = true;
this.configProps$ = this.pConn$.resolveConfigProps(this.pConn$.getConfigProps());
this.propsToUse = { ...this.pConn$.getInheritedProps() };
this.label$ = this.configProps$?.label || this.propsToUse.label;
// When called from ObjectReference, pConn$ itself acts as deferLoadedTabs (no children[2])
if (this.type === 'ObjectReference') {
this.deferLoadedTabs = { getPConnect: () => this.pConn$ };
Expand Down
Loading