Skip to content

Commit 9ed1ea2

Browse files
committed
downgrade apexchart to "apexcharts": "^3.52.0" due to bug apexcharts/apexcharts.js#4897
1 parent 28e089f commit 9ed1ea2

File tree

7 files changed

+277
-186
lines changed

7 files changed

+277
-186
lines changed

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This page provides a step-by-step guide to quickly get started with AdminForth using the `adminforth` CLI.
44
You will learn how to set up a new project using the `adminforth create-app` command and explore AdminForth’s fundamentals.
55

6-
> 👆 For Hello world example without CLI check out [Hello World without CLI](./01-helloWorld.md)
6+
> 👆 For setup example without CLI check out [Hello World without CLI](./01-helloWorld.md)
77
88
## Prerequisites
99

@@ -19,17 +19,13 @@ nvm use 20
1919

2020
The recommended way to get started with AdminForth is via the **`create-app`** CLI, which scaffolds a basic fully functional back-office application. Apart boilerplate it creates one resource for users management.
2121

22-
### Create a fresh directory
23-
2422
First, create and enter a directory where you want your AdminForth project to live. For instance:
2523

2624
```bash
2725
mkdir myadmin
2826
cd myadmin
2927
```
3028

31-
### Run the CLI
32-
3329
You can provide options directorly:
3430

3531
```bash

adminforth/spa/package-lock.json

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

adminforth/spa/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@iconify-prerendered/vue-flowbite": "^0.23.1714023977",
1717
"@unhead/vue": "^1.9.12",
1818
"@vueuse/core": "^10.10.0",
19-
"apexcharts": "^4.3.0",
19+
"apexcharts": "^3.52.0",
2020
"dayjs": "^1.11.11",
2121
"debounce": "^2.1.0",
2222
"flowbite": "^2.3.0",

adminforth/spa/src/afcl/AreaChart.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ watch(() => [options.value, chart.value], (value) => {
138138
if (!value || !chart.value) {
139139
return;
140140
}
141+
console.log('options changed', options.value);
141142
if (apexChart) {
142143
apexChart.updateOptions(options.value);
143144
} else {

0 commit comments

Comments
 (0)