mirror of https://github.com/usememos/memos
chore: tweak default page size
parent
00788bd8f8
commit
12f4d3a10d
@ -1,16 +1,14 @@
|
||||
// UNKNOWN_ID is the symbol for unknown id
|
||||
// UNKNOWN_ID is the symbol for unknown id.
|
||||
export const UNKNOWN_ID = -1;
|
||||
|
||||
// default animation duration
|
||||
// ANIMATION_DURATION is the duration of animation in milliseconds.
|
||||
export const ANIMATION_DURATION = 200;
|
||||
|
||||
// millisecond in a day
|
||||
// DAILY_TIMESTAMP is the timestamp for a day.
|
||||
export const DAILY_TIMESTAMP = 3600 * 24 * 1000;
|
||||
|
||||
// space width for tab action in editor
|
||||
// TAB_SPACE_WIDTH is the default tab space width.
|
||||
export const TAB_SPACE_WIDTH = 2;
|
||||
|
||||
// default fetch memo amount
|
||||
export const DEFAULT_MEMO_LIMIT = 10;
|
||||
|
||||
export const DEFAULT_LIST_MEMOS_PAGE_SIZE = 10;
|
||||
// DEFAULT_LIST_MEMOS_PAGE_SIZE is the default page size for list memos request.
|
||||
export const DEFAULT_LIST_MEMOS_PAGE_SIZE = 16;
|
||||
|
Loading…
Reference in New Issue