1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix: events pages renders incorrect tooltip as non-parsed template (#1919)

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2021-01-08 17:01:23 +02:00 committed by GitHub
parent bb45002851
commit b547541ea8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ import React, { Fragment } from "react";
import { observer } from "mobx-react";
import { TabLayout } from "../layout/tab-layout";
import { eventStore } from "./event.store";
import { KubeObjectListLayout, KubeObjectListLayoutProps, getDetailsUrl } from "../kube-object";
import { getDetailsUrl, KubeObjectListLayout, KubeObjectListLayoutProps } from "../kube-object";
import { KubeEvent } from "../../api/endpoints/events.api";
import { Tooltip } from "../tooltip";
import { Link } from "react-router-dom";
@ -65,7 +65,7 @@ export class Events extends React.Component<Props> {
small
material="help_outline"
className="help-icon"
tooltip="Limited to {eventStore.limit}"
tooltip={`Limited to ${eventStore.limit}`}
/>
</>
)