From 2385d989a8cc79d9c0dd0d45578dbf6a769ccfe2 Mon Sep 17 00:00:00 2001 From: Steffen Date: Tue, 17 Sep 2024 12:58:13 +0200 Subject: [PATCH] fix(build) --- src/Handler/PrintCenter.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Handler/PrintCenter.hs b/src/Handler/PrintCenter.hs index 167704c4d..c139a2b00 100644 --- a/src/Handler/PrintCenter.hs +++ b/src/Handler/PrintCenter.hs @@ -528,7 +528,7 @@ getPrintLogR = do dbtColonnade = dbColonnade $ mconcat [ sortable (Just "time") (i18nCell MsgSystemMessageTimestamp) $ \(view $ resultLog . to transactionLogTime -> t) -> dateTimeCell t , sortable (Just "status") (textCell "Status" ) $ tCell (cellMaybe iconBoolCell . transactionInterfaceSuccess) - , sortable (Just "interface") (i18nCell MsgInterfaceName ) $ tCell ( tellCell . transactionInterfaceName) + , sortable (Just "interface") (i18nCell MsgInterfaceName ) $ tCell ( textCell . transactionInterfaceName) , sortable (Just "subtype") (i18nCell MsgInterfaceSubtype ) $ tCell ( textCell . transactionInterfaceSubtype) , sortable (Just "info") (i18nCell MsgSystemMessageContent ) $ tCellErr ( textCell . transactionInterfaceInfo) ]