Files
klz-cables.com/.pnpm-store/v10/files/c8/def2b5c6342be8427e20c4e79821e9ce39396382558db95cfa0c8dfcb44dbad1f1a7de377672381c5abc7b96d30522a000aa5a2d9eee8089fcbcf64c0d9931
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

33 lines
716 B
Plaintext

'use client';
import { c as _c } from "react/compiler-runtime";
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { useTranslation } from '../../../../../providers/Translation/index.js';
import './index.scss';
export const CheckboxCell = t0 => {
const $ = _c(3);
const {
cellData
} = t0;
const {
t
} = useTranslation();
const t1 = `general:${cellData}`;
let t2;
if ($[0] !== t || $[1] !== t1) {
t2 = _jsx("code", {
className: "bool-cell",
children: _jsx("span", {
children: t(t1).toLowerCase()
})
});
$[0] = t;
$[1] = t1;
$[2] = t2;
} else {
t2 = $[2];
}
return t2;
};
//# sourceMappingURL=index.js.map