Skip to content

Commit fece78c

Browse files
committed
custom page tuning
1 parent 96d1c08 commit fece78c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

adminforth/documentation/docs/tutorial/001-gettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ async function seedDatabase() {
476476
//diff-add
477477
}
478478
//diff-add
479-
for (let i = 0; i <= 50; i++) {
479+
for (let i = 0; i <= 100; i++) {
480480
//diff-add
481481
await admin.resource('aparts').create({
482482
//diff-add

adminforth/documentation/docs/tutorial/03-Customization/06-customPages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Create a Vue component in the `custom` directory of your project, e.g. `Dashboar
3636
3737
```html title="./custom/Dashboard.vue"
3838
<template>
39-
<div class="px-4 py-4 bg-blue-50 dark:bg-gray-900 dark:shadow-none min-h-[calc(100vh-56px)]">
39+
<div class="px-4 py-4 bg-blue-50 dark:bg-gray-900 dark:shadow-none min-h-screen">
4040
4141
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4">
4242
<div class="max-w-md w-full bg-white rounded-lg shadow dark:bg-gray-800 p-4 md:p-5" v-if="data">

adminforth/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adminforth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "adminforth",
3-
"version": "1.5.9-next.11",
3+
"version": "1.5.9-next.12",
44
"description": "OpenSource Vue3 powered forth-generation admin panel",
55
"main": "dist/index.js",
66
"module": "dist/index.js",

live-demo/app/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ async function seedDatabase() {
111111
if (await admin.resource('aparts').count() > 0) {
112112
return
113113
}
114-
for (let i = 0; i <= 50; i++) {
114+
for (let i = 0; i <= 100; i++) {
115115
await admin.resource('aparts').create({
116116
id: `${i}`,
117117
title: `Apartment ${i}`,

0 commit comments

Comments
 (0)