Files
klz-cables.com/.pnpm-store/v10/files/0e/54b7533c917e680f37282f5583c63fe301cc851afb132645a7bb7c0cf527d27f6141b3226260ce81d69daa55982dda182eb88821293633121e4b314c64d11d
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

13 lines
341 B
Plaintext

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