Commit 27471866 authored by HJISTC's avatar HJISTC

修复一个会导致npm start出错的问题

parent 4c95445a
...@@ -290,7 +290,7 @@ export class AppsService { ...@@ -290,7 +290,7 @@ export class AppsService {
if (Array.isArray(value)) { if (Array.isArray(value)) {
let map = new Map<string, App>(); let map = new Map<string, App>();
for (let appId of value) { for (let appId of value) {
map.set(appId, apps.get(appId)); map.set(appId, apps.get(appId)!);
} }
app[key] = map; app[key] = map;
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment