mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
fix: restore from backup, restart button for tools, loader for fields
This commit is contained in:
@@ -29,7 +29,11 @@ export function FormInput({ title, hideIfEmpty = false, isRequired = false, ...p
|
||||
return (
|
||||
<label className="flex flex-col gap-1">
|
||||
{title && <span className="text-sm font-medium">{title}</span>}
|
||||
<Input {...props} className={cn("bg-background", isRequired && isEmpty && "bg-yellow-50", props.className)} />
|
||||
<Input
|
||||
{...props}
|
||||
className={cn("bg-background", isRequired && isEmpty && "bg-yellow-50", props.className)}
|
||||
data-1p-ignore
|
||||
/>
|
||||
</label>
|
||||
)
|
||||
}
|
||||
@@ -70,6 +74,7 @@ export function FormTextarea({ title, hideIfEmpty = false, isRequired = false, .
|
||||
ref={textareaRef}
|
||||
{...props}
|
||||
className={cn("bg-background", isRequired && isEmpty && "bg-yellow-50", props.className)}
|
||||
data-1p-ignore
|
||||
/>
|
||||
</label>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user