Skip to content

Commit

Permalink
downgrade apexchart to "apexcharts": "^3.52.0" due to bug apexcharts/…
Browse files Browse the repository at this point in the history
  • Loading branch information
ivictbor committed Jan 5, 2025
1 parent 28e089f commit 9ed1ea2
Show file tree
Hide file tree
Showing 7 changed files with 277 additions and 186 deletions.
6 changes: 1 addition & 5 deletions adminforth/documentation/docs/tutorial/001-gettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This page provides a step-by-step guide to quickly get started with AdminForth using the `adminforth` CLI.
You will learn how to set up a new project using the `adminforth create-app` command and explore AdminForth’s fundamentals.

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

Expand All @@ -19,17 +19,13 @@ nvm use 20

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.

### Create a fresh directory

First, create and enter a directory where you want your AdminForth project to live. For instance:

```bash
mkdir myadmin
cd myadmin
```

### Run the CLI

You can provide options directorly:

```bash
Expand Down
168 changes: 102 additions & 66 deletions adminforth/spa/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion adminforth/spa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@iconify-prerendered/vue-flowbite": "^0.23.1714023977",
"@unhead/vue": "^1.9.12",
"@vueuse/core": "^10.10.0",
"apexcharts": "^4.3.0",
"apexcharts": "^3.52.0",
"dayjs": "^1.11.11",
"debounce": "^2.1.0",
"flowbite": "^2.3.0",
Expand Down
1 change: 1 addition & 0 deletions adminforth/spa/src/afcl/AreaChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ watch(() => [options.value, chart.value], (value) => {
if (!value || !chart.value) {
return;
}
console.log('options changed', options.value);
if (apexChart) {
apexChart.updateOptions(options.value);
} else {
Expand Down
Loading

0 comments on commit 9ed1ea2

Please sign in to comment.