Enable lenses by default
This commit is contained in:
parent
f18c76fe99
commit
29ec8fb530
@ -127,11 +127,11 @@ Application behavior can be changed by configuring the following environment var
|
|||||||
|
|
||||||
#### Display
|
#### Display
|
||||||
- `NEXT_PUBLIC_CATEGORY_VISIBILITY`
|
- `NEXT_PUBLIC_CATEGORY_VISIBILITY`
|
||||||
- Comma-separated value controlling which photos sets appear in grid sidebar and CMD-K menu, and in what order. For example, you could move cameras above tags, and hide film simulations, by updating to `cameras,tags,recipes`.
|
- Comma-separated value controlling which photo sets appear in grid sidebar and CMD-K menu, and in what order. For example, you could move cameras above tags, and hide film simulations, by updating to `cameras,tags,lenses,recipes`.
|
||||||
- Accepted values:
|
- Accepted values:
|
||||||
- `tags` (default)
|
- `tags` (default)
|
||||||
- `cameras` (default)
|
- `cameras` (default)
|
||||||
- `lenses`
|
- `lenses` (default)
|
||||||
- `recipes` (default)
|
- `recipes` (default)
|
||||||
- `films` (default)
|
- `films` (default)
|
||||||
- `focal-lengths`
|
- `focal-lengths`
|
||||||
|
|||||||
@ -23,6 +23,7 @@ export type CategoryKeys = CategoryKey[];
|
|||||||
export const DEFAULT_CATEGORY_KEYS: CategoryKeys = [
|
export const DEFAULT_CATEGORY_KEYS: CategoryKeys = [
|
||||||
'tags',
|
'tags',
|
||||||
'cameras',
|
'cameras',
|
||||||
|
'lenses',
|
||||||
'recipes',
|
'recipes',
|
||||||
'films',
|
'films',
|
||||||
];
|
];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user