Skip to content

Commit

Permalink
#1275 Make name of case template editable
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed May 5, 2020
1 parent 9bfad19 commit 9f72ef5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ class Properties @Inject() (

lazy val caseTemplate: List[PublicProperty[_, _]] =
PublicPropertyListBuilder[CaseTemplateSteps]
.property("name", UniMapping.string)(_.field.readonly)
.property("name", UniMapping.string)(_.field.updatable)
.property("displayName", UniMapping.string)(_.field.updatable)
.property("titlePrefix", UniMapping.string.optional)(_.field.updatable)
.property("description", UniMapping.string.optional)(_.field.updatable)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class Properties @Inject() (

lazy val caseTemplate: List[PublicProperty[_, _]] =
PublicPropertyListBuilder[CaseTemplateSteps]
.property("name", UniMapping.string)(_.field.readonly)
.property("name", UniMapping.string)(_.field.updatable)
.property("displayName", UniMapping.string)(_.field.updatable)
.property("titlePrefix", UniMapping.string.optional)(_.field.updatable)
.property("description", UniMapping.string.optional)(_.field.updatable)
Expand Down

0 comments on commit 9f72ef5

Please sign in to comment.