Allow to search in source names in webui

This commit is contained in:
Eike Kettner
2020-11-30 14:26:10 +01:00
parent 0ee8ff66d5
commit 346d23928d
5 changed files with 63 additions and 2 deletions

View File

@ -29,6 +29,8 @@ module Data.Icons exposing
, personIcon
, search
, searchIcon
, source
, sourceIcon
, tag
, tagIcon
, tags
@ -40,6 +42,16 @@ import Html exposing (Html, i)
import Html.Attributes exposing (class)
source : String
source =
"upload icon"
sourceIcon : String -> Html msg
sourceIcon classes =
i [ class (source ++ " " ++ classes) ] []
customFieldType : CustomFieldType -> String
customFieldType ftype =
case ftype of