mirror of
https://github.com/portainer/portainer.git
synced 2025-08-05 05:45:22 +02:00
feat(edge/update): select endpoints to update [EE-4043] (#7602)
This commit is contained in:
parent
36e7981ab7
commit
4d123895ea
37 changed files with 1192 additions and 130 deletions
|
@ -32,6 +32,7 @@ export function NavTabs<T extends string | number = string>({
|
|||
className={clsx({
|
||||
active: option.id === selectedId,
|
||||
[styles.parent]: !option.children,
|
||||
disabled,
|
||||
})}
|
||||
key={option.id}
|
||||
>
|
||||
|
@ -53,7 +54,7 @@ export function NavTabs<T extends string | number = string>({
|
|||
))}
|
||||
</ul>
|
||||
{selected && selected.children && (
|
||||
<div className="tab-content">{selected.children}</div>
|
||||
<div className="tab-content mt-3">{selected.children}</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -40,7 +40,7 @@ export const Checkbox = forwardRef<HTMLInputElement, Props>(
|
|||
}, [resolvedRef, indeterminate]);
|
||||
|
||||
return (
|
||||
<div className="md-checkbox" title={title || label}>
|
||||
<div className="md-checkbox flex" title={title || label}>
|
||||
<input
|
||||
id={id}
|
||||
type="checkbox"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue