[AAE-6150] User info disappears in every click (#7328)

* [AAE-6150] userinfo remove debounce for every reload

* [ci:force] force e2e
This commit is contained in:
Dharan
2021-10-28 18:52:17 +05:30
committed by GitHub
parent 6c4650785c
commit 08b9cd144f
3 changed files with 10 additions and 10 deletions

View File

@@ -94,7 +94,7 @@ export class DropdownCloudWidgetComponent extends WidgetComponent implements OnI
}
if (typeof opt1 === 'object' && typeof opt2 === 'object') {
return opt1.id === opt2.id && opt1.name === opt2.name;
return opt1.id === opt2.id || opt1.name === opt2.name;
}
return opt1 === opt2;