Browse Source

fix(gui-v2): update plugin title cache as well

pull/3364/head
Wing-Kam Wong 2 years ago
parent
commit
36bff8c8eb
  1. 1
      packages/nocodb/src/lib/models/Plugin.ts

1
packages/nocodb/src/lib/models/Plugin.ts

@ -71,6 +71,7 @@ export default class Plugin implements PluginType {
o = { ...o, ...updateObj };
// set cache
await NocoCache.set(key, o);
await NocoCache.set(`${CacheScope.PLUGIN}:${o.title}`, o);
}
// set meta
await Noco.ncMeta.metaUpdate(

Loading…
Cancel
Save