We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A
SendingContentNotification
1 parent dc0005f commit aced691Copy full SHA for aced691
src/Umbraco.Web.UI.Client/src/common/directives/components/content/umbvariantcontent.directive.js
@@ -109,7 +109,7 @@
109
110
function onAppChanged(activeApp) {
111
// set the name field to readonly if the user don't have update permissions or the active content app is not "Content" or "Info"
112
- const allowUpdate = vm.editor.content.allowedActions.includes('A');
+ const allowUpdate = vm.content.allowedActions.includes('A');
113
const isContentBasedApp = activeApp && contentAppHelper.isContentBasedApp(activeApp);
114
vm.nameReadonly = !allowUpdate || !isContentBasedApp;
115
}
0 commit comments