mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-12-18 15:08:00 +01:00
Fixed tags block not being hidden on encountering error
This commit is contained in:
parent
1853c8984f
commit
c0db5d0ef7
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
- form_class = if @changeset.action, do: "", else: "hidden"
|
- form_class = if @changeset.action, do: "", else: "hidden"
|
||||||
|
- tags_class = if @changeset.action, do: "hidden", else: ""
|
||||||
- tags = display_order(@image.tags)
|
- tags = display_order(@image.tags)
|
||||||
- tag_input = Enum.map_join(tags, ", ", & &1.name)
|
- tag_input = Enum.map_join(tags, ", ", & &1.name)
|
||||||
|
|
||||||
|
@ -56,7 +57,7 @@
|
||||||
p
|
p
|
||||||
' You can't edit the tags on this image.
|
' You can't edit the tags on this image.
|
||||||
|
|
||||||
.block.tagsauce
|
.block.tagsauce class=tags_class
|
||||||
.block__header.flex
|
.block__header.flex
|
||||||
span.block__header__title
|
span.block__header__title
|
||||||
i.fas.fa-tag>
|
i.fas.fa-tag>
|
||||||
|
|
Loading…
Reference in a new issue