mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Fix hiding tags/fields when corresponding setting exists
This commit is contained in:
parent
9bea0298ad
commit
1ef035f061
@ -393,6 +393,20 @@ mainTagsAndFields settings item =
|
||||
|
||||
showField fv =
|
||||
Util.CustomField.renderValue "ui basic label" fv
|
||||
|
||||
renderFields =
|
||||
if hideFields then
|
||||
[]
|
||||
|
||||
else
|
||||
List.map showField item.customfields
|
||||
|
||||
renderTags =
|
||||
if hideTags then
|
||||
[]
|
||||
|
||||
else
|
||||
List.map showTag item.tags
|
||||
in
|
||||
div
|
||||
[ classList
|
||||
@ -400,7 +414,7 @@ mainTagsAndFields settings item =
|
||||
, ( "invisible hidden", hideTags && hideFields )
|
||||
]
|
||||
]
|
||||
(List.map showField item.customfields ++ List.map showTag item.tags)
|
||||
(renderFields ++ renderTags)
|
||||
|
||||
|
||||
previewImage : UiSettings -> Attribute Msg -> Model -> ItemLight -> Html Msg
|
||||
|
Loading…
x
Reference in New Issue
Block a user