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

fix base store channel names

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-11-19 09:11:25 +02:00
parent a731e66b18
commit ea2b67f061

View File

@ -38,11 +38,11 @@ export class BaseStore<T = any> extends Singleton {
}
get syncRendererChannel() {
return `store-sync-renderer:${this.name}`
return `store-sync-renderer:${this.path}`
}
get syncMainChannel() {
return `store-sync-main:${this.name}`
return `store-sync-main:${this.path}`
}
get path() {