Skip to content

Commit

Permalink
DomainInput props to input
Browse files Browse the repository at this point in the history
  • Loading branch information
raix committed Jul 21, 2024
1 parent fa8e862 commit 6ed5fa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/templates/components/DomainInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ type DomainInputProps = {
export function DomainInput({ domain, ...props }: DomainInputProps) {
return (
<Group className="overflow-hidden">
<Input isEmbedded />
<Input {...props} isEmbedded value={domain} isDisabled className="min-w-fit max-w-fit shrink-0 text-xs" />
<Input {...props} isEmbedded />
<Input isEmbedded value={domain} isDisabled className="min-w-fit max-w-fit shrink-0 text-xs" />
</Group>
);
}

0 comments on commit 6ed5fa5

Please sign in to comment.