ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Variable SUPPLIER_COUNTRY_OPTIONSConst

    SUPPLIER_COUNTRY_OPTIONS: { code: string; label: string }[] = ...

    Supplier country options available for filtering in the drawer search panel. Derived from the locations defined in config.json, excluding the "OTHER" fallback entry. Sorted alphabetically by country label.

    export const SUPPLIER_COUNTRY_OPTIONS = Object.entries(locations)
    .filter(([code]) => code !== "OTHER")
    .map(([code, { name }]) => ({ code, label: name }))
    .sort((a, b) => a.label.localeCompare(b.label));