Commit Graph

3293 Commits

Author SHA1 Message Date
IcySugar000
8aa3cd799a Fix: Fixed null value handling and ensure exceptions are avoided 2025-04-09 11:32:05 +08:00
zrguo
27d31ca29c Update README.md 2025-04-09 10:48:57 +08:00
chaohuang-ai
dba3031f7d Update README.md 2025-04-09 10:45:46 +08:00
Daniel.y
e5daf2cfbd Merge pull request #1314 from danielaskdd/main
Improve context only mode for Ollama api
2025-04-08 18:48:12 +08:00
yangdx
25f2ecb5a9 Fix linting 2025-04-08 18:47:50 +08:00
yangdx
1375b8eea7 Fix linting 2025-04-08 18:46:09 +08:00
yangdx
151058b89d Update README.md 2025-04-08 18:44:55 +08:00
yangdx
fa8f6d615a Improve context only mode for Ollama api 2025-04-08 18:41:00 +08:00
Daniel.y
3c2d0462bb Merge pull request #1305 from Exploding-Soda/main
Add /context query prefix to Ollama model simulation for LightRAG Server
2025-04-08 17:25:24 +08:00
Daniel.y
fa90d0750b Merge pull request #1310 from danielaskdd/main
Add fallback support for translation missing
2025-04-08 15:06:40 +08:00
yangdx
b80be58c6b Update webui assets 2025-04-08 15:01:24 +08:00
yangdx
6e162ec297 Add fallback support for translation missing 2025-04-08 14:59:20 +08:00
yangdx
37b73d6850 Update i18n translation 2025-04-08 14:57:48 +08:00
Daniel.y
476208f215 Merge pull request #1308 from danielaskdd/main
Add node types and colors
2025-04-08 13:43:18 +08:00
yangdx
ce48e071a2 Update webui assets 2025-04-08 13:38:32 +08:00
yangdx
648a024af2 Add node types 2025-04-08 13:38:06 +08:00
yangdx
2b21e95d09 Add i18n translation 2025-04-08 13:17:12 +08:00
yangdx
b645eaad9f Add i18n translation 2025-04-08 13:14:17 +08:00
yangdx
11392fc20f Udate node types 2025-04-08 13:09:25 +08:00
yangdx
6401b88ab4 Modify legend box hight 2025-04-08 13:02:28 +08:00
yangdx
8259b7b8bf Update webui assets 2025-04-08 12:46:44 +08:00
yangdx
389abfe7e5 Update color 2025-04-08 12:46:23 +08:00
yangdx
ed36278638 Update webui assets 2025-04-08 12:41:33 +08:00
yangdx
f87dfd2067 Map node type to fix color 2025-04-08 12:41:33 +08:00
yangdx
1af97bbead Optimize node color 2025-04-08 12:41:33 +08:00
FeHuynhVI
4b45aa9321 Merge pull request #1 from FeHuynhVI/FeHuynhVI-fix-file-path
Fixes a bug where file_path was not present in the dictionary
2025-04-08 01:24:03 +07:00
FeHuynhVI
881943b8ae Update operate.py 2025-04-08 01:22:11 +07:00
Exploding-Soda
7432450e46 Add /context query prefix to Ollama model simulation for LightRAG Server 2025-04-08 02:16:40 +08:00
Daniel.y
2abc26b718 Merge pull request #1298 from IcySugar000/main
Update neo4j_impl.py
2025-04-07 22:39:25 +08:00
Daniel.y
1e1d676b0e Merge pull request #1302 from danielaskdd/main
Bump core version to 1.3.2
2025-04-07 22:38:29 +08:00
yangdx
39cc5ac0ac Bump core version to 1.3.2 2025-04-07 22:23:20 +08:00
Daniel.y
546c7f4178 Merge pull request #1301 from danielaskdd/main
Fix graph label drop down list position problem
2025-04-07 22:16:07 +08:00
yangdx
36ac95720f Update webui assets 2025-04-07 22:15:00 +08:00
yangdx
2731634ba4 Fix graph label drop down list position problem 2025-04-07 22:12:58 +08:00
Daniel.y
e1ea3bf88a Merge pull request #1299 from danielaskdd/fix-safari-popover
Fix i18n direction problem and Safari graph view toolbar popover problem
2025-04-07 20:32:22 +08:00
yangdx
d2f6446a27 Update webui assets 2025-04-07 20:25:51 +08:00
yangdx
e395b10a72 Bump api version to 0140 2025-04-07 20:25:44 +08:00
yangdx
6a0909ea32 Fix i18n direction problem 2025-04-07 20:24:51 +08:00
yangdx
09719bb9cf Fix Safari popover problem 2025-04-07 20:09:43 +08:00
IcySugar
fe36488bc9 Update neo4j_impl.py
Fix: added the "f" for format for logger
2025-04-07 16:56:33 +08:00
Daniel.y
d11f346cd5 Merge pull request #1292 from danielaskdd/fix-promise-warning
Fix promise warning and add null checks in FileUploader to prevent split() on undefined
2025-04-07 06:27:29 +08:00
yangdx
4dd02074c0 Update webui assets 2025-04-07 06:21:47 +08:00
yangdx
56865816f1 Fix linting 2025-04-07 06:20:48 +08:00
yangdx
4dcb266adf Bump api version to 0139 2025-04-07 06:20:28 +08:00
yangdx
1d5c6570ea fix: add null checks in FileUploader to prevent split() on undefined
- Add validation for file.name existence before accessing split() method
- Ensure extensions array exists before calling includes() method
- Add similar checks in onDrop file filtering logic
- Fix TypeError that occurred when processing files with missing properties
2025-04-07 06:19:28 +08:00
yangdx
d2efc80fad fix: prevent promise errors in async operations after component unmount
This commit addresses the "Uncaught (in promise) Error: A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received" error that occurs when async operations attempt to update state after component unmount.

Changes:

- Add component mount status tracking with useRef in App.tsx and DocumentManager.tsx
- Implement beforeunload event listeners to handle page reload scenarios
- Add mount status checks before and after async operations
- Add try-catch blocks to properly handle errors in async operations
- Ensure state updates only occur when components are still mounted
- Prevent health check and document polling from causing errors during unmount
2025-04-07 06:04:18 +08:00
Daniel.y
4c5229bb76 Bump api version to 0138 2025-04-07 05:36:38 +08:00
Daniel.y
6156481ffc Merge pull request #1291 from danielaskdd/main
fix: improve form accessibility with proper label associations
2025-04-07 05:27:07 +08:00
yangdx
f2f390274c Update webui assets 2025-04-07 05:23:51 +08:00
yangdx
f33ff7f2c2 Fix linting 2025-04-07 05:23:28 +08:00