Files
klz-cables.com/.pnpm-store/v10/files/b4/076127683fde9770b3eb9043ef8831c0f739fc76d2e86d6a0b48e9b6cc5dc74f6bddc5312d037e6ca47c4c6852502ed6cb1aeb7c8b16a58b25a2ca107c0df0
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
634 B
Plaintext

import type { I18nClient } from '@payloadcms/translations';
import type { ClientField } from 'payload';
/**
* Returns the appropriate display value for a field.
* - For select and radio fields:
* - Returns JSX elements as-is.
* - Translates localized label objects based on the current language.
* - Returns string labels directly.
* - Falls back to the option value if no valid label is found.
* - For all other field types, returns `cellData` unchanged.
*/
export declare const getDisplayedFieldValue: (cellData: any, field: ClientField, i18n: I18nClient) => any;
//# sourceMappingURL=getDisplayedFieldValue.d.ts.map