mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
feat: Page size 1 option (#10957)
This commit is contained in:
parent
422c9463c8
commit
bdc0622f59
|
@ -31,7 +31,7 @@ const emit = defineEmits<{
|
|||
}>();
|
||||
|
||||
const { t } = useI18n();
|
||||
const rowsPerPageOptions = ref([10, 25, 50, 100]);
|
||||
const rowsPerPageOptions = ref([1, 10, 25, 50, 100]);
|
||||
|
||||
const $style = useCssModule();
|
||||
|
||||
|
|
|
@ -200,7 +200,7 @@ export default defineComponent({
|
|||
MAX_DISPLAY_ITEMS_AUTO_ALL,
|
||||
currentPage: 1,
|
||||
pageSize: 10,
|
||||
pageSizes: [10, 25, 50, 100],
|
||||
pageSizes: [1, 10, 25, 50, 100],
|
||||
|
||||
pinDataDiscoveryTooltipVisible: false,
|
||||
isControlledPinDataTooltip: false,
|
||||
|
|
Loading…
Reference in a new issue