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
4
web/.gitignore
vendored
4
web/.gitignore
vendored
@ -22,4 +22,6 @@ dist-ssr
|
|||||||
*.njsproj
|
*.njsproj
|
||||||
*.sln
|
*.sln
|
||||||
*.sw?
|
*.sw?
|
||||||
.env
|
.env
|
||||||
|
test-results
|
||||||
|
playwright-report
|
||||||
@ -156,7 +156,7 @@ export function MessageBubble({
|
|||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
!isComplete &&
|
!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
|
<ReactMarkdown
|
||||||
|
|||||||
@ -355,12 +355,7 @@ export default function SetPasswordDialog({
|
|||||||
</p>
|
</p>
|
||||||
<ul className="space-y-1">
|
<ul className="space-y-1">
|
||||||
{(
|
{(
|
||||||
[
|
["length", "uppercase", "digit", "special"] as const
|
||||||
"length",
|
|
||||||
"uppercase",
|
|
||||||
"digit",
|
|
||||||
"special",
|
|
||||||
] as const
|
|
||||||
).map((req) => (
|
).map((req) => (
|
||||||
<li
|
<li
|
||||||
key={req}
|
key={req}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user