Opening two instances of the web app and logging out in one does not log out in other. How to solve?
- Open two tabs
- Both with https://vue.cleanui.cloud/
- Log into both
- Log out in one tab
- Other tab still works
It should ideally log out in both places, how to fix?
After page reloading the app catch latest auth data from firebase localstorage, you should implement cross window events to trigger logout method
Hi, trying to start the updated version of the template (which you gave me access the last week) i found some issues i don't get. I report the output from the start to give an hint about what the problem could be
yarn run v1.22.4
proj | $ react-app-rewired start
proj | ℹ 「wds」: Project is running at http://172.20.0.2/
proj | ℹ 「wds」: webpack output is served from
proj | ℹ 「wds」: Content not from webpack is served from /root/proj/public
proj | ℹ 「wds」: 404s will fallback to /
proj | Starting the development server...
proj |
proj | Done in 12.28s.
proj_n exited with code 0
Do you have any ideas about this behaviour?
Hi, trying to start the updated version of the template (which you gave me access the last week) i found some issues i don't get. I report the output from the start to give an hint about what the problem could be
yarn run v1.22.4 proj | $ react-app-rewired start proj | ℹ 「wds」: Project is running at http://172.20.0.2/ proj | ℹ 「wds」: webpack output is served from proj | ℹ 「wds」: Content not from webpack is served from /root/proj/public proj | ℹ 「wds」: 404s will fallback to / proj | Starting the development server... proj | proj | Done in 12.28s. proj_n exited with code 0
Do you have any ideas about this behaviour?
Please try to install latest LTS node version - currently it 12.18.2
There is a small UI issue in the dark mode of Vue cleanui template. Enable dark mode in this page: https://vue.cleanui.cloud/#/tables/antd
Click Sort on "Address" cell under Filter and Sort table. Move your mouse elsewhere, you can see the cell background go white. Tried to fix it, couldn't. Please let me know which css property should be edited for fixing this.
Thank you for the report, we will fix dark theme asap
I don't know about how much expected is that behaviour, but i get this result launching the project on volumes attached to a docker container with yarn while, using npm on my local machine env everything goes smooth and working
Try to comment routes (and leave one dashboard) and then try again. Maybe it's because there's not enough memory.
I don't know about how much expected is that behaviour, but i get this result launching the project on volumes attached to a docker container with yarn while, using npm on my local machine env everything goes smooth and working
Might be because of lack of memory, faced a similar issue. Fixed it by increasing the memory and cores I allocate to Docker. It was in 1gb, updated to 4. Things worked fine.
Hi, could you help me to understand how to disable the user auth entangled in your template?
I'm trying to substitute your fake auth with my authentication routine but every time i try to substituite the default login page with mine in the routes, the template forcely redirect me to the dashboard or to a 404 like it didn't find the page (which i can assure follows the right path as much as other routes)
See, after succesfull registartion or login app navigates to root path - yield history.push('/‘)
in src/redux/user/sagas.js
Then src/layouts/index.js
will redirect to login url if user not authorized
if (!isAuthLayout && !isUserAuthorized) {
return <Redirect to="/auth/login" />
}
that was no help
We answered you above - please clarify your question