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
16 lines
508 B
Plaintext
16 lines
508 B
Plaintext
/**
|
|
* Centralized preference keys used throughout Payload admin UI.
|
|
* Import these constants instead of using string literals to prevent typos.
|
|
*/ export const PREFERENCE_KEYS = {
|
|
/**
|
|
* Stores browse by folder view state
|
|
*/ BROWSE_BY_FOLDER: 'browse-by-folder',
|
|
/**
|
|
* Stores dashboard layout configuration
|
|
*/ DASHBOARD_LAYOUT: 'dashboard-layout',
|
|
/**
|
|
* Stores navigation group collapse/expand state and nav open/closed state
|
|
*/ NAV: 'nav'
|
|
};
|
|
|
|
//# sourceMappingURL=keys.js.map |