mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 23:41:12 +08:00
### What problem does this PR solve? ## What - Add `group` class to wrapper div to enable hover state coordination - Apply hover styles to checkbox via group-hover - Make FormLabel clickable via onClick toggle + cursor-pointer - Fix label color logic: disabled vs primary state ## Why The "Remember me" label was not clickable and had no hover feedback, making the UX inconsistent with standard checkbox behavior. ## How to test 0. Go to the demo video before/after attached below 1. Go to the login page 2. Click directly on the "Remember me" label → should toggle the checkbox 3. Hover over the checkbox area → should show hover styles ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) ## Before https://github.com/user-attachments/assets/bd47d45c-09ea-437f-bd98-3397ce040c1e ## After https://github.com/user-attachments/assets/45c65d1a-bec7-4ad6-8f1c-d149f7296f8f
Install front-end dependencies
npm install
Launch front-end
npm run dev
The following output confirms a successful launch of the system:
Login to RAGFlow web UI
Open your browser and navigate to:
http://localhost:9222 or http://[YOUR_MACHINE_IP]:9222
Replace [YOUR_MACHINE_IP] with your actual machine IP address (e.g., http://192.168.1.49:9222).
Login to RAGFlow web admin UI
Open your browser and navigate to:
http://localhost:9222/admin or http://[YOUR_MACHINE_IP]:9222/admin
Replace [YOUR_MACHINE_IP] with your actual machine IP address (e.g., http://192.168.1.49:9222/admin).
Shutdown front-end
Ctrl + C or
kill -f "umi dev"