Skip to content

Commit

Permalink
different import style
Browse files Browse the repository at this point in the history
  • Loading branch information
ccomb committed Sep 12, 2024
1 parent e771b7c commit b49c474
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Page/Explore/TextileProcesses.elm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Page.Explore.TextileProcesses exposing (table)

import Data.Dataset as Dataset
import Data.Scope exposing (Scope)
import Data.Textile.Process as Process exposing (Process, getDisplayName)
import Data.Textile.Process as Process exposing (Process)
import Html exposing (..)
import Html.Attributes exposing (..)
import Page.Explore.Table as Table exposing (Table)
Expand Down Expand Up @@ -31,8 +31,8 @@ table { detailed, scope } =
)
}
, { label = "Nom"
, toValue = Table.StringValue getDisplayName
, toCell = getDisplayName >> text
, toValue = Table.StringValue Process.getDisplayName
, toCell = Process.getDisplayName >> text
}
, { label = "Étape"
, toValue = Table.StringValue .stepUsage
Expand Down

0 comments on commit b49c474

Please sign in to comment.