diff --git a/web/app/components/custom-editable-field.hbs b/web/app/components/custom-editable-field.hbs
index 14cc80daf..8f1ee8452 100644
--- a/web/app/components/custom-editable-field.hbs
+++ b/web/app/components/custom-editable-field.hbs
@@ -6,6 +6,6 @@
@onChange={{if this.typeIsPeople this.onPeopleSelectChange}}
@onSave={{if this.typeIsPeople this.onPeopleSave @onSave}}
@isSaving={{@isSaving}}
- @disabled={{@disabled}}
+ @isReadOnly={{@disabled}}
/>
diff --git a/web/app/components/document/sidebar.hbs b/web/app/components/document/sidebar.hbs
index 18d544011..143d8137c 100644
--- a/web/app/components/document/sidebar.hbs
+++ b/web/app/components/document/sidebar.hbs
@@ -106,7 +106,7 @@
@value={{this.title}}
@onSave={{this.saveTitle}}
@isSaving={{this.saveIsRunning}}
- @disabled={{not this.isOwner}}
+ @isReadOnly={{not this.isOwner}}
@isRequired={{true}}
@name="title"
@tag="h1"
@@ -127,7 +127,7 @@
@value={{this.summary}}
@onSave={{this.saveSummary}}
@isSaving={{this.saveIsRunning}}
- @disabled={{not this.isOwner}}
+ @isReadOnly={{not this.isOwner}}
@name="summary"
@placeholder="Enter a summary"
/>
@@ -200,7 +200,7 @@
@onChange={{this.updateContributors}}
@onSave={{perform this.save "contributors"}}
@isSaving={{this.saveIsRunning}}
- @disabled={{not this.isOwner}}
+ @isReadOnly={{not this.isOwner}}
/>
@@ -216,7 +216,7 @@
@onChange={{this.updateApprovers}}
@onSave={{perform this.save "approvers"}}
@isSaving={{this.saveIsRunning}}
- @disabled={{this.editingIsDisabled}}
+ @isReadOnly={{this.editingIsDisabled}}
{{! Provide the document to the `has-approved-doc` helper }}
@document={{@document}}
/>
diff --git a/web/app/components/editable-field.hbs b/web/app/components/editable-field.hbs
index 6da8157a9..7ee80ac5f 100644
--- a/web/app/components/editable-field.hbs
+++ b/web/app/components/editable-field.hbs
@@ -71,7 +71,7 @@