Skip to content

Commit

Permalink
Fix credo warning
Browse files Browse the repository at this point in the history
  • Loading branch information
thbar committed Dec 17, 2024
1 parent 436d506 commit f66a7fd
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ defmodule TransportWeb.Backoffice.IRVEDashboardLive do

filtering_expression == "" ||
String.contains?(resource["dataset_organisation_name"] |> String.downcase(), filtering_expression) ||
String.contains?(format_validity(resource["valid"], resource["http_status"]) |> inspect |> String.downcase(), filtering_expression)
String.contains?(
format_validity(resource["valid"], resource["http_status"])
|> inspect
|> String.downcase(),
filtering_expression
)
end

def assign_data(socket) do
Expand Down

0 comments on commit f66a7fd

Please sign in to comment.