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

31 lines
940 B
Plaintext

import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { Fragment } from 'react';
import { RenderCustomComponent } from '../elements/RenderCustomComponent/index.js';
import { FieldLabel } from '../fields/FieldLabel/index.js';
export const combineFieldLabel = ({
CustomLabel,
field,
prefix
}) => {
return /*#__PURE__*/_jsxs(Fragment, {
children: [prefix ? /*#__PURE__*/_jsxs(Fragment, {
children: [/*#__PURE__*/_jsx("span", {
style: {
display: 'inline-block'
},
children: prefix
}), ' > ']
}) : null, /*#__PURE__*/_jsx("span", {
style: {
display: 'inline-block'
},
children: /*#__PURE__*/_jsx(RenderCustomComponent, {
CustomComponent: CustomLabel,
Fallback: /*#__PURE__*/_jsx(FieldLabel, {
label: 'label' in field && field.label
})
})
})]
});
};
//# sourceMappingURL=combineFieldLabel.js.map