1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-11-13 14:40:40 +02:00
parent d07e199976
commit 334fd06ae7

View File

@ -2,7 +2,7 @@
import { action, observable } from "mobx";
export class BaseRegistry<T = any> {
protected items = observable<T>([], { deep: false });
private items = observable<T>([], { deep: false });
getItems(): T[] {
return this.items.toJS();