From e58b76a5437ade1f3e3dda7ae7f7862d8906088c Mon Sep 17 00:00:00 2001 From: kabdibereke <100946196+kabdibereke@users.noreply.github.com> Date: Wed, 17 Jul 2024 10:09:13 +0500 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B5=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D0=BB=20=D0=BF=D0=BE=D0=B2=D1=82=D0=BE=D1=80=D0=BD=D1=8B?= =?UTF-8?q?=D0=B9=20=D0=B2=D1=8B=D0=B1=D0=BE=D1=80=20=D0=B3=D0=BE=D1=80?= =?UTF-8?q?=D0=BE=D0=B4=D0=B0=20=D0=B2=20=D0=B1=D0=BB=D0=BE=D0=BA=D0=B5=20?= =?UTF-8?q?=D0=A4=D0=B8=D0=BB=D1=8C=D1=82=D1=80=20=D0=B8=20=D0=B2=D0=B0?= =?UTF-8?q?=D0=BB=D1=8E=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../salaries/components/shared/global-filters-form-group.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &&