mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat: Page size 1 option (#10957)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user