diff --git a/rsconcept/frontend/src/components/select/ConstituentaMultiPicker.tsx b/rsconcept/frontend/src/components/select/ConstituentaMultiPicker.tsx index bf2d6559..68ba4438 100644 --- a/rsconcept/frontend/src/components/select/ConstituentaMultiPicker.tsx +++ b/rsconcept/frontend/src/components/select/ConstituentaMultiPicker.tsx @@ -59,7 +59,7 @@ function ConstituentaMultiPicker({ id, schema, prefixID, rows, selected, setSele if (!schema || selected.length === 0) { return; } - const addition = schema.graph.expandInputs(selected).filter(id => !selected.includes(id)); + const addition = schema.graph.expandAllInputs(selected).filter(id => !selected.includes(id)); if (addition.length > 0) { setSelected([...selected, ...addition]); } @@ -69,7 +69,7 @@ function ConstituentaMultiPicker({ id, schema, prefixID, rows, selected, setSele if (!schema || selected.length === 0) { return; } - const addition = schema.graph.expandOutputs(selected).filter(id => !selected.includes(id)); + const addition = schema.graph.expandAllOutputs(selected).filter(id => !selected.includes(id)); if (addition.length > 0) { setSelected([...selected, ...addition]); } diff --git a/rsconcept/frontend/src/components/ui/MiniButton.tsx b/rsconcept/frontend/src/components/ui/MiniButton.tsx index 91982e5d..cad3c927 100644 --- a/rsconcept/frontend/src/components/ui/MiniButton.tsx +++ b/rsconcept/frontend/src/components/ui/MiniButton.tsx @@ -26,7 +26,7 @@ function MiniButton({ type='button' tabIndex={tabIndex ?? -1} className={clsx( - 'rounded-full', + 'rounded-lg', 'clr-btn-clear', 'cursor-pointer disabled:cursor-not-allowed', { diff --git a/rsconcept/frontend/src/components/ui/TabLabel.tsx b/rsconcept/frontend/src/components/ui/TabLabel.tsx index 52f72c25..8969973c 100644 --- a/rsconcept/frontend/src/components/ui/TabLabel.tsx +++ b/rsconcept/frontend/src/components/ui/TabLabel.tsx @@ -14,7 +14,7 @@ function TabLabel({ label, title, titleHtml, hideTitle, className, ...otherProps return ( { function DlgDeleteCst({ hideWindow, selected, schema, onDelete }: DlgDeleteCstProps) { const [expandOut, setExpandOut] = useState(false); - const expansion: number[] = useMemo(() => schema.graph.expandOutputs(selected), [selected, schema.graph]); + const expansion: number[] = useMemo(() => schema.graph.expandAllOutputs(selected), [selected, schema.graph]); function handleSubmit() { hideWindow(); diff --git a/rsconcept/frontend/src/dialogs/DlgEditVersions/DlgEditVersions.tsx b/rsconcept/frontend/src/dialogs/DlgEditVersions/DlgEditVersions.tsx index 43d34ee6..3b42acfa 100644 --- a/rsconcept/frontend/src/dialogs/DlgEditVersions/DlgEditVersions.tsx +++ b/rsconcept/frontend/src/dialogs/DlgEditVersions/DlgEditVersions.tsx @@ -88,18 +88,20 @@ function DlgEditVersions({ hideWindow, versions, onDelete, onUpdate }: DlgEditVe value={version} onChange={event => setVersion(event.target.value)} /> - } - onClick={handleUpdate} - /> - } - /> +
+ } + onClick={handleUpdate} + /> + } + /> +