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

18 lines
711 B
Plaintext

import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { FolderTableCellClient } from './index.client.js';
export const FolderTableCell = props => {
const titleToRender = (props.collectionConfig.upload ? props.rowData?.filename : props.rowData?.title) || props.rowData.id;
if (!props.payload.config.folders) {
return null;
}
return /*#__PURE__*/_jsx(FolderTableCellClient, {
collectionSlug: props.collectionSlug,
data: props.rowData,
docTitle: titleToRender,
folderCollectionSlug: props.payload.config.folders.slug,
folderFieldName: props.payload.config.folders.fieldName,
viewType: props.viewType
});
};
//# sourceMappingURL=index.server.js.map