fix: wrap field labels in join request view
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Simon 2026-05-06 11:52:48 +02:00
parent 6327ea00eb
commit 15e9a52bc9
Signed by: simon
GPG key ID: 40E7A58C4AA1EDB2
2 changed files with 8 additions and 8 deletions

View file

@ -63,9 +63,9 @@ defmodule MvWeb.JoinRequestLive.ShowTest do
{:ok, view, _html} = live(conn, "/join_requests/#{join_request.id}")
assert has_element?(view, "span", "#{custom_field.name}:")
assert has_element?(view, "span", "Alice Example")
refute has_element?(view, "span", "#{custom_field.id}:")
assert has_element?(view, "dt", "#{custom_field.name}:")
assert has_element?(view, "dd", "Alice Example")
refute has_element?(view, "dt", "#{custom_field.id}:")
end
end
end