diff --git a/app/scripts/modules/core/src/help/help.contents.ts b/app/scripts/modules/core/src/help/help.contents.ts index e6e12de5fd6..74d8b685439 100644 --- a/app/scripts/modules/core/src/help/help.contents.ts +++ b/app/scripts/modules/core/src/help/help.contents.ts @@ -52,7 +52,6 @@ const helpContents: { [key: string]: string } = { `, 'pipeline.config.triggers.respectQuietPeriod': `

The quiet period is a system operator designated period of time when automated pipelines and deploys should not run.

`, diff --git a/app/scripts/modules/core/src/pipeline/filter/executionFilter.service.ts b/app/scripts/modules/core/src/pipeline/filter/executionFilter.service.ts index ebc25485d22..dfdd7bc45f6 100644 --- a/app/scripts/modules/core/src/pipeline/filter/executionFilter.service.ts +++ b/app/scripts/modules/core/src/pipeline/filter/executionFilter.service.ts @@ -136,11 +136,8 @@ export class ExecutionFilterService { } const searchText = [execution.name]; searchText.push(execution.id); - searchText.push(this.getValuesAsString(execution.appConfig)); - searchText.push(this.getValuesAsString(execution.trigger)); - execution.stages.forEach(stage => - searchText.push(this.getValuesAsString(stage.context, ['commits', 'jarDiffs', 'kato.tasks'])), - ); + searchText.push(this.getValuesAsString(execution.trigger, ['parentExecution'])); + execution.searchField = searchText.join(' ').toLowerCase(); }