We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18697f1 commit f265fc9Copy full SHA for f265fc9
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@netdata/netdata-ui",
3
- "version": "5.4.0",
+ "version": "5.4.1",
4
"description": "netdata UI kit",
5
"main": "dist/index.js",
6
"module": "dist/es6/index.js",
src/organisms/navigation/tab/index.js
@@ -26,6 +26,8 @@ const Tab = ({
26
collapsed,
27
rootProps,
28
ref,
29
+ tooltip,
30
+ tooltipProps,
31
...rest
32
}) => {
33
const [hover, setHover] = useState()
@@ -87,6 +89,8 @@ const Tab = ({
87
89
data-index={index}
88
90
data-id={id}
91
style={style}
92
+ tooltip={tooltip}
93
+ tooltipProps={tooltipProps}
94
{...attributes}
95
{...rootProps}
96
>
0 commit comments