@nine-lab/nine-mu 0.1.237 → 0.1.238

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.237",
3
+ "version": "0.1.238",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -126,7 +126,10 @@ export class NineChat extends HTMLElement {
126
126
  if (hasUpdated || hasCreated || hasDeleted) {
127
127
  // 진짜 메뉴명 변경이나 이동만 요청한 경우
128
128
  nine.alert("메뉴 정리를 위한 라우터 정보 저장 화면으로 이동합니다.").then(res => {
129
- const tobe = (parsed?.data || []).map(({ isNew, action, ...rest }) => rest);
129
+ const tobe = (parsed?.data || [])
130
+ .filter(item => item.action !== 'DELETE')
131
+ .map(({ isNew, action, ...rest }) => rest);
132
+
130
133
  this.#showDiff(asis, tobe, "json");
131
134
  });
132
135
  }