mirror of https://github.com/rancher/dashboard.git
Merge pull request #6263 from richard-cox/reduce-max-page-size
Lower the maximum number of table rows a user can choose to display
This commit is contained in:
commit
7d2ef51455
|
|
@ -59,7 +59,7 @@ export const THEME = create('theme', 'auto', {
|
|||
export const PREFERS_SCHEME = create('pcs', '', { asCookie, asUserPreference: false });
|
||||
export const LOCALE = create('locale', 'en-us', { asCookie });
|
||||
export const KEYMAP = create('keymap', 'sublime', { options: ['sublime', 'emacs', 'vim'] });
|
||||
export const ROWS_PER_PAGE = create('per-page', 100, { options: [10, 25, 50, 100, 250, 500, 1000], parseJSON });
|
||||
export const ROWS_PER_PAGE = create('per-page', 100, { options: [10, 25, 50, 100], parseJSON });
|
||||
export const LOGS_WRAP = create('logs-wrap', true, { parseJSON });
|
||||
export const LOGS_TIME = create('logs-time', true, { parseJSON });
|
||||
export const LOGS_RANGE = create('logs-range', '30 minutes', { parseJSON });
|
||||
|
|
|
|||
Loading…
Reference in New Issue