Skip to content

Commit a846e3a

Browse files
committed
Show 50 results per page
1 parent 2516a77 commit a846e3a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

etc/js/components/pages/internals/tables.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ const filter = ref("");
2525
const headers = computed(() => {
2626
return [
2727
{name: "ID", schema: ["table-id"], get: (table) => table.id},
28-
{name: "Entities", schema: ["int"], get: (table) => table.count},
29-
{name: "Capacity", schema: ["int"], get: (table) => table.size},
28+
{name: "Entities", schema: ["int"], totals: true, get: (table) => table.count},
29+
{name: "Capacity", schema: ["int"], totals: true, get: (table) => table.size},
3030
{name: "Columns", schema: ["int"], get: (table) => table.type.length},
3131
{name: "Memory (KB)", schema: ["float"], totals: true, get: (table) => {
3232
if (!table.memory) {

etc/js/components/widgets/data-table.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const orderByModes = ["none", "asc", "desc"];
9999
const orderBy = ref({});
100100
const emit = defineEmits(["select"]);
101101
const offset = ref(0);
102-
const limit = ref(25);
102+
const limit = ref(50);
103103
104104
const props = defineProps({
105105
headers: {type: Array, required: true },

0 commit comments

Comments
 (0)