Files
klz-cables.com/.pnpm-store/v10/files/83/de605b8a0ea5b00d0c8b8649188956ce33ddfccee1b1674b2053dca6986084d66e877ea8d8c1c1a797ae100cbb9fbcb565eac7496d52b092de1d45fcc2c2bf
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

22 lines
541 B
Plaintext

'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import './index.scss';
export const CodeCell = ({
cellData,
nowrap
}) => {
const textToShow = cellData?.length > 100 ? `${cellData.substring(0, 100)}\u2026` : cellData;
const noWrapStyle = nowrap ? {
whiteSpace: 'nowrap'
} : {};
return /*#__PURE__*/_jsx("code", {
className: "code-cell",
style: noWrapStyle,
children: /*#__PURE__*/_jsx("span", {
children: textToShow
})
});
};
//# sourceMappingURL=index.js.map