force cms to reload (#5890)

This commit is contained in:
Aditya Bist
2019-06-04 17:20:04 -07:00
committed by GitHub
parent 9b40838ea3
commit 803b02be81

View File

@@ -313,6 +313,12 @@ export class ExtensionService extends Disposable implements IExtensionService {
}
}
// {{SQL CARBON EDIT}}
// Forces a reload for CMS extension
if (extension.name === 'cms') {
return false;
}
return true;
}