diff --git a/src/app/modules/salaries/components/shared/global-filters-form-group.ts b/src/app/modules/salaries/components/shared/global-filters-form-group.ts index 7cbc25ff..d4081650 100644 --- a/src/app/modules/salaries/components/shared/global-filters-form-group.ts +++ b/src/app/modules/salaries/components/shared/global-filters-form-group.ts @@ -39,7 +39,7 @@ export class SalaryChartGlobalFiltersData { equals(other: SalaryChartGlobalFiltersData): boolean { return ( this.grade === other.grade && - this.cities.length === other.cities.length && + this.isEqualArrays(this.cities, other.cities) && this.isEqualArrays(this.profsInclude, other.profsInclude) && this.isEqualArrays(this.skills, other.skills) && this.salarySourceType === other.salarySourceType &&