Add: conan support

This commit is contained in:
2021-06-03 02:54:44 +02:00
parent 0ad8735519
commit 3baf88ba0a
5 changed files with 58 additions and 19 deletions

View File

@@ -1,6 +1,5 @@
module Files exposing (..)
import Debug exposing (toString)
import String
import Element exposing (..)
import Element.Border as Border
import Element.Font as Font
@@ -177,7 +176,7 @@ viewFile file =
, alignBottom
, alignRight
]
{ url = String.concat [ "http://127.0.0.1/api/file/", toString file.id ]
{ url = String.concat [ "http://127.0.0.1/api/file/", String.fromInt file.id ]
, label = text "Download"
}
]