Skip to content

Commit

Permalink
feat: Page size 1 option (#10957)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-radency authored Sep 25, 2024
1 parent 422c946 commit bdc0622
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion packages/editor-ui/src/components/RunData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit bdc0622

Please sign in to comment.