Compare commits

...

2 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] d1360342eb Fix: Prevent Python3 dependencies from appearing in NodeJs tab
Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
2025-12-15 10:11:12 +00:00
copilot-swe-agent[bot] 39ef449c10 Initial plan 2025-12-15 10:07:55 +00:00
+1 -1
View File
@@ -107,7 +107,7 @@ export default class DependenceService {
query: any = {},
): Promise<Dependence[]> {
let condition = query;
if (DependenceTypes[type]) {
if (type && DependenceTypes[type] !== undefined) {
condition.type = DependenceTypes[type];
}
if (status) {