summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/cell
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/renderer/components/cell')
-rw-r--r--gui/src/renderer/components/cell/Selector.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/src/renderer/components/cell/Selector.tsx b/gui/src/renderer/components/cell/Selector.tsx
index debcdbef38..e527017435 100644
--- a/gui/src/renderer/components/cell/Selector.tsx
+++ b/gui/src/renderer/components/cell/Selector.tsx
@@ -25,6 +25,7 @@ interface CommonSelectorProps<T, U> {
value: T | U;
selectedCellRef?: React.Ref<HTMLElement>;
className?: string;
+ infoTitle?: string;
details?: React.ReactElement;
expandable?: { expandable: boolean; id: string };
disabled?: boolean;
@@ -82,7 +83,7 @@ export default function Selector<T, U>(props: SelectorProps<T, U>) {
</AriaLabel>
{props.details && (
<AriaDetails>
- <InfoButton>{props.details}</InfoButton>
+ <InfoButton title={props.infoTitle}>{props.details}</InfoButton>
</AriaDetails>
)}
</>