-
Notifications
You must be signed in to change notification settings - Fork 90
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
UI hangs and mouse is not responsive #27
Comments
…overlay issue fix affects: @nodejs-code-generator/client ISSUES CLOSED: #27
Hello @adrien19 , the issue is fixed. |
@saloni137 This issue isn't fixed yet, today I cloned the repo and set up the project using |
@akanshSirohi This seems to be issue of react devlopment repo. Please check the thread here. CRA team working on it. |
Issue still exists |
Same here. |
@akanshSirohi @ravisojitra I see you are using |
Thank you @yaldram for suggesting this. will it be okay for you to submit PR for this solution? |
I did triage this issue, but given the fact that you are using |
@ravisojitra I was able to migrate the client project to https://vitejs.dev/. There were a couple of major changes -
|
@yaldram that's great. However as you mentioned in previous comment that those |
@ravisojitra In vite we have a separate way of using environment variables, so in the .env file I have -
and in the constants.js file I am using it like so - const projectServiceUrl = import.meta.env.VITE_APP_PROJECT_SERVICE_URL; You have to change the REACT_APP to VITE_APP. |
@ravisojitra also with vite 3.0 the latest release we need |
@yaldram Thanks for the response. Can you please submit PR for this? I would love to merge it if everything's working well. |
@ravisojitra here you go - #35 |
Hello,
I am wondering if anyone else encountered the same issue.
After running
npm i && npm run start
, a new browser window is opened with a form to create a new app. However, the fields (inputs and all UI buttons) are not responsive to user clicks. To enter for instance the name of the app, I have to use the keyboard Tab to navigate to the "application name" input field. I can then continue using the Tab to navigate to other fields. Even after creating the application, the UI is still not responsive to user clicks (ex: for creating models).I suspect this may be related to the auto-generated main.css found in packages/client/src/assets/css/main.css. But I can't figure out what the issue is exactly in this file.
I've tested on Chrome and Safari browsers and the issue persists on both.
Any help/advise would be much appreciated!
The text was updated successfully, but these errors were encountered: