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

spelling: selected

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2021-06-24 19:41:13 -04:00
parent 58a3ebcc96
commit 7893191fbc
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ export class ReleaseStore extends ItemStore<HelmRelease> {
}); });
} }
watchSelecteNamespaces(): (() => void) { watchSelectedNamespaces(): (() => void) {
return reaction(() => namespaceStore.context.contextNamespaces, namespaces => { return reaction(() => namespaceStore.context.contextNamespaces, namespaces => {
this.loadAll(namespaces); this.loadAll(namespaces);
}); });

View File

@ -56,7 +56,7 @@ export class HelmReleases extends Component<Props> {
componentDidMount() { componentDidMount() {
disposeOnUnmount(this, [ disposeOnUnmount(this, [
releaseStore.watchAssociatedSecrets(), releaseStore.watchAssociatedSecrets(),
releaseStore.watchSelecteNamespaces(), releaseStore.watchSelectedNamespaces(),
]); ]);
} }