Skip to content

Commit

Permalink
Fix property export form (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
L-e-x-o-n authored Jan 29, 2025
1 parent 2fb41be commit 881733a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ defmodule TeiserverWeb.Telemetry.PropertyController do
@spec export_form(Plug.Conn.t(), map) :: Plug.Conn.t()
def export_form(conn, _params) do
conn
|> assign(:property_types, Telemetry.list_property_types(order_by: "Name (A-Z)"))
|> assign(:property_types, Telemetry.list_property_types(order_by: ["Name (A-Z)"]))
|> render("export_form.html")
end

Expand Down

0 comments on commit 881733a

Please sign in to comment.