Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Graph time axis is reversed: goes from most recent to oldest values #1204

Closed
rloomans opened this issue Feb 21, 2024 · 3 comments · Fixed by #1206
Closed

Graph time axis is reversed: goes from most recent to oldest values #1204

rloomans opened this issue Feb 21, 2024 · 3 comments · Fixed by #1206
Assignees
Labels
🐛 bug Something isn't working

Comments

@rloomans
Copy link

Describe the bug
I would expect that the graphs would have the oldest values on the left to the newest values on the right. What I’m seeing is the reverse.

To Reproduce
Both the public dashboard and the admin one have graphs in the same newest to oldest values

Expected behavior
I would expect that the graphs would have the oldest values on the left to the newest values on the right.

Environment (please complete the following information):

  • OS: Debian
  • Architecture: amd64
  • Browser: Safari on iOS
  • Version: 17.3

Using your docker image, not the Linux server one, with postgresql

version: '3.3'
services:
  speedtest-tracker:
    container_name: speedtest-tracker
    expose:
      - 80
      - 443
    environment:
      - PUID=1000
      - PGID=1000
      - DB_CONNECTION=pgsql
      - DB_HOST=db
      - DB_PORT=5432
      - DB_DATABASE=speedtest_tracker
      - DB_USERNAME=speedy
      - DB_PASSWORD=<redacted>
      - TZ=Australia/Brisbane
    volumes:
      - '/etc/localtime:/etc/localtime:ro'
      - './config:/config'
      - './web:/etc/ssl/web'
    image: 'ghcr.io/alexjustesen/speedtest-tracker:latest'
    restart: unless-stopped
    depends_on:
      - db
    networks:
      - nginx_proxy
      - default

  db:
    image: postgres:15
    restart: always
    environment:
      - POSTGRES_DB=speedtest_tracker
      - POSTGRES_USER=speedy
      - POSTGRES_PASSWORD=<redacted>
      - TZ=Australia/Brisbane
    volumes:
      - '/etc/localtime:/etc/localtime:ro'
      - speedtest-db:/var/lib/postgresql/data
    networks:
      - default

volumes:
  speedtest-db:

networks:
  nginx_proxy:
    name: nginx_proxy
    external: true

Screenshots

IMG_0344

Logs
N/A

Additional context
image

@corasaniti
Copy link

Same problem here
Cattura1

@mircotronchin
Copy link

mircotronchin commented Feb 21, 2024

same problem here with 0.16.5:
Screenshot 2024-02-21 alle 09 09 08

@masterwishx
Copy link

Also have this issue :

image

@alexjustesen alexjustesen self-assigned this Feb 21, 2024
@alexjustesen alexjustesen added the 🐛 bug Something isn't working label Feb 21, 2024
@alexjustesen alexjustesen linked a pull request Feb 21, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants