[arvados] updated: 2.7.0-5796-gc27bb5c264
git repository hosting
git at public.arvados.org
Thu Jan 11 14:37:10 UTC 2024
Summary of changes:
.../ms-toolbar-overflow-menu.tsx | 22 ++++++++++++----------
1 file changed, 12 insertions(+), 10 deletions(-)
via c27bb5c264c5f8760baee1956dcfc6a2657e0917 (commit)
from 3456de80d25dfb480133bd8afd9f51cdb1d942ee (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit c27bb5c264c5f8760baee1956dcfc6a2657e0917
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Thu Jan 11 09:37:06 2024 -0500
21317: added tooltip to overflow icon Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/components/multiselect-toolbar/ms-toolbar-overflow-menu.tsx b/services/workbench2/src/components/multiselect-toolbar/ms-toolbar-overflow-menu.tsx
index a2b23f9143..09333075d6 100644
--- a/services/workbench2/src/components/multiselect-toolbar/ms-toolbar-overflow-menu.tsx
+++ b/services/workbench2/src/components/multiselect-toolbar/ms-toolbar-overflow-menu.tsx
@@ -5,7 +5,7 @@
import React, { useState, useMemo } from 'react';
import { DoubleRightArrows } from 'components/icon/icon';
import classnames from 'classnames';
-import { IconButton, Menu, MenuItem, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core';
+import { IconButton, Menu, MenuItem, StyleRulesCallback, Tooltip, WithStyles, withStyles } from '@material-ui/core';
import { ArvadosTheme } from 'common/custom-theme';
type CssRules = 'inOverflowMenu' | 'iconButton';
@@ -39,15 +39,17 @@ export const OverflowMenu = withStyles(styles)((props: any & WithStyles<CssRules
}
return (
<div className={className}>
- <IconButton
- aria-label='more'
- aria-controls='long-menu'
- aria-haspopup='true'
- onClick={handleClick}
- className={classes.iconButton}
- >
- <DoubleRightArrows />
- </IconButton>
+ <Tooltip title="More Options" disableFocusListener>
+ <IconButton
+ aria-label='more'
+ aria-controls='long-menu'
+ aria-haspopup='true'
+ onClick={handleClick}
+ className={classes.iconButton}
+ >
+ <DoubleRightArrows />
+ </IconButton>
+ </Tooltip>
<Menu
id='long-menu'
anchorEl={anchorEl}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list