Files
klz-cables.com/.pnpm-store/v10/files/64/2498ec94416a61f9f08ffa5e5b0aa687d162cdadb21eb8a32e6775d19cee159b18e564bd622d75cc11582f9f9bf7c6e26c09652fbff899efbec07979800445
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
378 B
Plaintext

export const mergeFieldStyles = field => ({
...(field?.admin?.style || {}),
...(field?.admin?.width ? {
'--field-width': field.admin.width
} : {
flex: '1 1 auto'
}),
// allow flex overrides to still take precedence over the fallback
...(field?.admin?.style?.flex ? {
flex: field.admin.style.flex
} : {})
});
//# sourceMappingURL=mergeFieldStyles.js.map