mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-14 16:01:13 +03:00
fix(ui): Update password requirements display in SetPasswordDialog component
This commit is contained in:
parent
9ab9b8576c
commit
671ac5238b
2
web/.gitignore
vendored
2
web/.gitignore
vendored
@ -23,3 +23,5 @@ dist-ssr
|
||||
*.sln
|
||||
*.sw?
|
||||
.env
|
||||
test-results
|
||||
playwright-report
|
||||
@ -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
|
||||
|
||||
@ -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}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user