mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2024-11-14 17:35:35 +01:00
Refactor CopyInput component
Remove unnecessary input-group-append div and simplify structure
This commit is contained in:
parent
acfbeb2c43
commit
c7ff3f42f6
|
@ -48,15 +48,13 @@ function CopyInput({ value, ...props }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Input type="text" value={value} ref={inputTextRef} {...props}>
|
<Input type="text" value={value} ref={inputTextRef} {...props}>
|
||||||
<div className="input-group-append">
|
<button
|
||||||
<button
|
className="btn btn-outline-secondary"
|
||||||
className="btn btn-outline-secondary"
|
type="button"
|
||||||
type="button"
|
onClick={handleCopyClick}
|
||||||
onClick={handleCopyClick}
|
>
|
||||||
>
|
<span>{isCopied ? _("Copied!") : _("Copy")}</span>
|
||||||
<span>{isCopied ? _("Copied!") : _("Copy")}</span>
|
</button>
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</Input>
|
</Input>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user