1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix crash with NamespaceSelectFilter

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-05-11 10:20:19 -04:00
parent f0b26be79a
commit e762c8d4d9

View File

@ -46,7 +46,14 @@ export class NamespaceSelectFilterModel {
this.dependencies.namespaceStore.selectAll();
};
onChange = ([{ value: namespace }]: SelectOption[]) => {
onChange = ([selected]: SelectOption<string>[]) => {
if (!selected) {
// This happens when pressing "Backspace" with an empty search field. Do nothing
return;
}
const { value: namespace } = selected;
if (namespace) {
if (this.isMultiSelection) {
this.dependencies.namespaceStore.toggleSingle(namespace);