Use cards for viewing items

This commit is contained in:
Eike Kettner
2020-05-17 21:42:16 +02:00
parent 98f202b797
commit 72a88f21cb
5 changed files with 118 additions and 69 deletions

View File

@ -1,6 +1,7 @@
module Util.String exposing
( crazyEncode
, ellipsis
, underscoreToSpace
, withDefault
)
@ -40,3 +41,8 @@ withDefault default str =
else
str
underscoreToSpace : String -> String
underscoreToSpace str =
String.replace "_" " " str