diff --git a/app/models/post/template_field.rb b/app/models/post/template_field.rb index abb4dae8..8b4b6928 100644 --- a/app/models/post/template_field.rb +++ b/app/models/post/template_field.rb @@ -248,13 +248,15 @@ class Post def human h = key.humanize - h += ' *' if required? h end def label - (complex? && contents.dig('label')) || human + h = (complex? && contents.dig('label')) || human + h += ' *' if required? + + h end def help