We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ec66cd commit 24acb72Copy full SHA for 24acb72
src/Rudder/Table.elm
@@ -910,9 +910,9 @@ viewCsvExportButtonOption option =
910
911
{-| View for the CSV export button in case the button should be displayed outside of the table
912
-}
913
-viewCsvExportButton : Model row msg -> Html (Msg msg)
914
-viewCsvExportButton (Model model) =
915
- viewCsvExportButtonOption model.options.csvExport
+viewCsvExportButton : CsvExportOptions row msg -> Html (Msg msg)
+viewCsvExportButton options =
+ viewCsvExportButtonOption options
916
917
918
tableHeader : NonEmptyList.Nonempty (Column row msg) -> Sort a -> (ColumnName -> List (Attribute msg)) -> Html (Msg msg)
0 commit comments