From da829723b92e59141af83248ed99fd53dee2cbf1 Mon Sep 17 00:00:00 2001 From: Raphael Krut-Landau <raphael.kl@gmail.com> Date: Fri, 23 Aug 2024 10:25:11 -0400 Subject: [PATCH] fix(browse): Remove some dead code (#46861) --- .../src/metabase/browse/components/utils.tsx | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/frontend/src/metabase/browse/components/utils.tsx b/frontend/src/metabase/browse/components/utils.tsx index f88304d642c..3f83dae39a9 100644 --- a/frontend/src/metabase/browse/components/utils.tsx +++ b/frontend/src/metabase/browse/components/utils.tsx @@ -8,30 +8,6 @@ import { getCollectionName } from "../utils"; import { pathSeparatorChar } from "./constants"; -export const getBreadcrumbMaxWidths = ( - collections: CollectionEssentials["effective_ancestors"], - totalUnitsOfWidthAvailable: number, - isPathEllipsified: boolean, -) => { - if (!collections || collections.length < 2) { - return []; - } - const lengths = collections.map( - collection => getCollectionName(collection).length, - ); - const ratio = lengths[0] / (lengths[0] + lengths[1]); - const firstWidth = Math.max( - Math.round(ratio * totalUnitsOfWidthAvailable), - 25, - ); - const secondWidth = totalUnitsOfWidthAvailable - firstWidth; - const padding = isPathEllipsified ? "2rem" : "1rem"; - return [ - `calc(${firstWidth}cqw - ${padding})`, - `calc(${secondWidth}cqw - ${padding})`, - ]; -}; - export const isModel = (item: SearchResult) => item.model === "dataset"; export const getModelDescription = (item: SearchResult) => { -- GitLab