fix(ui): Update password requirements display in SetPasswordDialog component

This commit is contained in:
Alex Neo 2026-04-28 16:30:16 +03:00
parent 9ab9b8576c
commit 671ac5238b
3 changed files with 5 additions and 8 deletions

4
web/.gitignore vendored
View File

@ -22,4 +22,6 @@ dist-ssr
*.njsproj
*.sln
*.sw?
.env
.env
test-results
playwright-report

View File

@ -156,7 +156,7 @@ export function MessageBubble({
<div
className={cn(
!isComplete &&
"[&>p:last-child]:inline after:ml-0.5 after:inline-block after:h-4 after:w-2 after:animate-cursor-blink after:rounded-sm after:bg-foreground after:align-middle after:content-['']",
"after:ml-0.5 after:inline-block after:h-4 after:w-2 after:animate-cursor-blink after:rounded-sm after:bg-foreground after:align-middle after:content-[''] [&>p:last-child]:inline",
)}
>
<ReactMarkdown

View File

@ -355,12 +355,7 @@ export default function SetPasswordDialog({
</p>
<ul className="space-y-1">
{(
[
"length",
"uppercase",
"digit",
"special",
] as const
["length", "uppercase", "digit", "special"] as const
).map((req) => (
<li
key={req}