Closed Mkranj closed 1 month ago
I am experiencing similar problems on Docker only. On local machine it's fine.
Hi, It appears to be a bug in the JavaScript library "air-datepicker", affecting at least the last 2 versions of the package on CRAN. Try installing from GitHub, it should fix the issue, I will make a new release on CRAN by the end of the month.
Victor
This is fixed with the v0.8.7 version of the package :) Thank you!
So, this is a weird issue I noticed. Here is a small app.R example:
I can run this app on my computer, and I want to change the first day in timespan to be 01.03.2024. instead of 03.06.2024. I just click on 03.06, click left to March and click on the 1st day. It all works as expected.
However, when I run my app in a Docker container, this doesn't work! The selection stays the same, even if I clicked all the way through to March. This is very unintuitive to use, and I can't seem to find what the issue is, any help would be greatly appreciated.
Sample Dockerfile:
Building the image with
docker build -t mkranj/airdatepicker --no-cache .
.Running the container with
docker run -p 1234:3838 -it mkranj/airdatepicker:latest
and going to http://localhost:1234/ in my browser.