From 0bd1ae99dfde41b5c9f1e953ad77952e637a9e25 Mon Sep 17 00:00:00 2001 From: Laura Benz <48948963+L-M-K-B@users.noreply.github.com> Date: Thu, 9 Mar 2023 09:24:45 +0100 Subject: [PATCH] Laura/standardise border radius in explore (#64338) * refactor: remove border radius in ExploreGraph * refactor: remove border radius in NoData * refactor: remove border radius in TracePageSearchBar * refactor: replace border radius in TracePageSearchBar and TraceViewContainer --- public/app/features/explore/Graph/ExploreGraph.tsx | 6 ++---- public/app/features/explore/NoData.tsx | 2 +- .../app/features/explore/TraceView/TraceViewContainer.tsx | 2 +- .../components/TracePageHeader/TracePageSearchBar.tsx | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/public/app/features/explore/Graph/ExploreGraph.tsx b/public/app/features/explore/Graph/ExploreGraph.tsx index 86af63d3d4e..20fff365c49 100644 --- a/public/app/features/explore/Graph/ExploreGraph.tsx +++ b/public/app/features/explore/Graph/ExploreGraph.tsx @@ -1,4 +1,4 @@ -import { css, cx } from '@emotion/css'; +import { css } from '@emotion/css'; import { identity } from 'lodash'; import React, { useEffect, useMemo, useState } from 'react'; @@ -159,7 +159,7 @@ export function ExploreGraph({ return ( {data.length > MAX_NUMBER_OF_TIME_SERIES && !showAllTimeSeries && ( -
+
Showing only {MAX_NUMBER_OF_TIME_SERIES} time series.