powerpaul17 / nc_money

Nextcloud app for finance management

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Graphical error in dashboard card

JannikWilhelm opened this issue · comments

Describe the bug
After upgrade to Version 0.21.0 the dashboard card no longer works.
The balances of all 3 graphs are 0 for all points.
Also the lines are offset downwards extremely (about 2 cards high per line) and not respecting the card borders.

To Reproduce
Steps to reproduce the behavior:

  1. Update of nc money to latest version via app store
  2. reload

Expected behavior
All 3 graphs should be inside the card applet and displaying the corresponding values

Screenshots
If applicable, add screenshots to help explain your problem.
grafik
grafik

Nextcloud information (please complete the following information):

  • Nextcloud version: NC Hub 6 (27.1.1)
  • App version: docker image
  • PHP version: inside nc docker image
  • Database type and version: mariadb 10.7

Desktop (please complete the following information):

  • OS: Fedora 38 Workstation
  • Browser Firefox
  • Version 118

docker-compose.yml contents

Details

version: '3'

services:
db:
image: mariadb:10.7
restart: always
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
volumes:
- /home/dock/nextcloud/db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=REDACTED
- MYSQL_PASSWORD=REDACTED
- MYSQL_DATABASE=nextcloud
- MYSQL_USER=REDACTED
restart: unless-stopped

app:
image: nextcloud
restart: always
ports:
- 80:80
links:
- db
volumes:
- /nextcloud/nextcloud:/var/www/html
- /nextcloud/apps:/var/www/html/custom_apps
- /nextcloud/config:/var/www/html/config
- /nextcloud/data:/var/www/html/data
environment:
- MYSQL_PASSWORD=REDACTED
- MYSQL_DATABASE=nextcloud
- MYSQL_USER=REDACTED
- MYSQL_HOST=db
restart: unless-stopped

Thanks for the bug report. I can reproduce the problem and will find a fix 🙂

Fixed in 77e43fa, I'll do a patch release tomorrow