Commit e2ea2d30 by Łukasz Siatka Committed by Lukas Siatka

updated live tailing text

parent f8cef9b9
......@@ -91,8 +91,8 @@ const getStyles = memoizeOne((theme: GrafanaTheme) => {
};
});
const defaultZoomOutTooltip = () => {
return <>Live tailing</>;
const defaultLiveTooltip = () => {
return <>Live</>;
};
type LiveTailButtonProps = {
......@@ -112,7 +112,7 @@ export function LiveTailButton(props: LiveTailButtonProps) {
return (
<>
<Tooltip content={defaultZoomOutTooltip} placement="bottom">
<Tooltip content={defaultLiveTooltip} placement="bottom">
<button
className={classNames('btn navbar-button', styles.liveButton, {
[`btn--radius-right-0 ${styles.noRightBorderStyle}`]: isLive,
......@@ -122,7 +122,7 @@ export function LiveTailButton(props: LiveTailButtonProps) {
onClick={onClickMain}
>
<i className={classNames('fa', isPaused || !isLive ? 'fa-play' : 'fa-pause')} />
<span>&nbsp; Live tailing</span>
<span>&nbsp; Live</span>
</button>
</Tooltip>
<CSSTransition
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment