mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix crash with NamespaceSelectFilter (#5367)
This commit is contained in:
parent
f0b26be79a
commit
6d7609b364
@ -46,7 +46,14 @@ export class NamespaceSelectFilterModel {
|
|||||||
this.dependencies.namespaceStore.selectAll();
|
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 (namespace) {
|
||||||
if (this.isMultiSelection) {
|
if (this.isMultiSelection) {
|
||||||
this.dependencies.namespaceStore.toggleSingle(namespace);
|
this.dependencies.namespaceStore.toggleSingle(namespace);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user