[ACS-8779] Keep selections and question after going to the previous page (#4147)

This commit is contained in:
jacekpluta
2024-10-04 14:54:09 +02:00
committed by GitHub
parent 64dfc48468
commit 3ec6d0be32
26 changed files with 457 additions and 123 deletions

View File

@@ -38,5 +38,5 @@ export class SearchByTermAiAction implements Action {
export class ToggleAISearchInput implements Action {
readonly type = SearchAiActionTypes.ToggleAiSearchInput;
constructor(public agentId: string) {}
constructor(public agentId: string, public searchTerm?: string) {}
}