Files
klz-cables.com/.pnpm-store/v10/files/5d/416a1f1fc7ec4e29e630d4f85f7813f3a645343fe863ce838cb0a83d1a17d5a5d4e05e35865f4a6ecaa5593aa29622c2979bc6baf7e73b1bf4b70477f0ed96
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

11 lines
290 B
Plaintext

export const withDefault = (column, field)=>{
if (typeof field.defaultValue === 'undefined' || typeof field.defaultValue === 'function') {
return column;
}
return {
...column,
default: field.defaultValue
};
};
//# sourceMappingURL=withDefault.js.map