From be970fc2cf65fe6596d32028e10b3292047e363f Mon Sep 17 00:00:00 2001 From: Maksim Efremov Date: Tue, 24 Dec 2024 19:07:43 +0300 Subject: [PATCH] chore: minor fix for styles --- .../ui/src/ui/pages/job/tabs/Statistics/Statistics.tsx | 7 +++++++ .../OperationDetail/tabs/statistics/Statistics.scss | 2 ++ 2 files changed, 9 insertions(+) diff --git a/packages/ui/src/ui/pages/job/tabs/Statistics/Statistics.tsx b/packages/ui/src/ui/pages/job/tabs/Statistics/Statistics.tsx index 10ba74a85..ec0a34df9 100644 --- a/packages/ui/src/ui/pages/job/tabs/Statistics/Statistics.tsx +++ b/packages/ui/src/ui/pages/job/tabs/Statistics/Statistics.tsx @@ -1,14 +1,21 @@ import * as React from 'react'; import {useSelector} from 'react-redux'; +import cn from 'bem-cn-lite'; + import {getRawStatistic} from '../../../../store/selectors/job/statistics'; import {StatisticTable, StatisticTree} from '../../../../components/StatisticTable'; import {isDocsAllowed} from '../../../../config'; import UIFactory from '../../../../UIFactory'; +import './Statistics.scss'; + +const block = cn('yt-job-statistics'); + export default function Statistics() { const statistic = useSelector(getRawStatistic); return (