ide-assi 0.219.0 → 0.221.0
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/bundle.cjs.js +1 -1
- package/dist/bundle.esm.js +1 -1
- package/dist/components/ideAi.js +1 -1
- package/package.json +1 -1
- package/src/components/ideAi.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -193760,7 +193760,7 @@ class IdeAi
|
|
|
193760
193760
|
#modifySource = async (userPrompt) => {
|
|
193761
193761
|
|
|
193762
193762
|
const el = ninegrid.querySelector("nx-side-menu-item.active");
|
|
193763
|
-
if (el) throw new Error("관련 메뉴를 찾을 수 없습니다.");
|
|
193763
|
+
if (!el) throw new Error("관련 메뉴를 찾을 수 없습니다.");
|
|
193764
193764
|
|
|
193765
193765
|
const href = el.getAttribute("href");
|
|
193766
193766
|
el.getAttribute("title");
|
package/dist/bundle.esm.js
CHANGED
|
@@ -193756,7 +193756,7 @@ class IdeAi
|
|
|
193756
193756
|
#modifySource = async (userPrompt) => {
|
|
193757
193757
|
|
|
193758
193758
|
const el = ninegrid.querySelector("nx-side-menu-item.active");
|
|
193759
|
-
if (el) throw new Error("관련 메뉴를 찾을 수 없습니다.");
|
|
193759
|
+
if (!el) throw new Error("관련 메뉴를 찾을 수 없습니다.");
|
|
193760
193760
|
|
|
193761
193761
|
const href = el.getAttribute("href");
|
|
193762
193762
|
el.getAttribute("title");
|
package/dist/components/ideAi.js
CHANGED
|
@@ -344,7 +344,7 @@ export class IdeAi
|
|
|
344
344
|
#modifySource = async (userPrompt) => {
|
|
345
345
|
|
|
346
346
|
const el = ninegrid.querySelector("nx-side-menu-item.active");
|
|
347
|
-
if (el) throw new Error("관련 메뉴를 찾을 수 없습니다.");
|
|
347
|
+
if (!el) throw new Error("관련 메뉴를 찾을 수 없습니다.");
|
|
348
348
|
|
|
349
349
|
const href = el.getAttribute("href");
|
|
350
350
|
const title = el.getAttribute("title");
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -344,7 +344,7 @@ export class IdeAi
|
|
|
344
344
|
#modifySource = async (userPrompt) => {
|
|
345
345
|
|
|
346
346
|
const el = ninegrid.querySelector("nx-side-menu-item.active");
|
|
347
|
-
if (el) throw new Error("관련 메뉴를 찾을 수 없습니다.");
|
|
347
|
+
if (!el) throw new Error("관련 메뉴를 찾을 수 없습니다.");
|
|
348
348
|
|
|
349
349
|
const href = el.getAttribute("href");
|
|
350
350
|
const title = el.getAttribute("title");
|