@nine-lab/nine-mu 0.1.223 → 0.1.225
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nine-mu.js +10 -10
- package/dist/nine-mu.js.map +1 -1
- package/dist/nine-mu.umd.js +1 -1
- package/dist/nine-mu.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NineChat.js +4 -3
package/package.json
CHANGED
|
@@ -116,11 +116,12 @@ export class NineChat extends HTMLElement {
|
|
|
116
116
|
//"source-missing"
|
|
117
117
|
//trace.log(parsed.data);
|
|
118
118
|
|
|
119
|
-
const currRoutes = await this.#$nineChatMessage.getRoutes();
|
|
120
119
|
|
|
121
|
-
|
|
120
|
+
const currRoutes = await this.#manager.getRoutes();
|
|
121
|
+
|
|
122
|
+
if (parsed?.selected_tool === "source-missing") {
|
|
122
123
|
nine.alert("메뉴 정리를 위한 라우터 정보 저장 화면으로 이동합니다.").then(res => {
|
|
123
|
-
this.#showDiff(currRoutes, parsed
|
|
124
|
+
this.#showDiff(currRoutes, parsed?.data, "json");
|
|
124
125
|
});
|
|
125
126
|
}
|
|
126
127
|
|