1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-12-22 00:19:19 +02:00

Chore: Apply linting to all JavaScript/Vue files with eslint & prettier

This commit is contained in:
Ralph Slooten
2025-06-20 23:26:06 +12:00
parent 7dee371721
commit 3fff79e29f
45 changed files with 8690 additions and 3458 deletions

View File

@@ -1,11 +1,11 @@
import { reactive } from 'vue'
import { reactive } from "vue";
export const pagination = reactive({
start: 0, // pagination offset
limit: 50, // per page
start: 0, // pagination offset
limit: 50, // per page
defaultLimit: 50, // used to shorten URL's if current limit == defaultLimit
total: 0, // total results of current view / filter
count: 0, // number of messages currently displayed
})
total: 0, // total results of current view / filter
count: 0, // number of messages currently displayed
});
export const limitOptions = [25, 50, 100, 200]
export const limitOptions = [25, 50, 100, 200];