@nine-lab/nine-mu 0.1.407 → 0.1.408
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 +554 -548
- 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/ai/NineNaturalQuery.js +7 -0
package/package.json
CHANGED
|
@@ -71,6 +71,13 @@ export class NineNaturalQuery extends HTMLElement {
|
|
|
71
71
|
});
|
|
72
72
|
|
|
73
73
|
trace.log(response);
|
|
74
|
+
if (response.list) {
|
|
75
|
+
const el = document.querySelector("nine-natual-query-result");
|
|
76
|
+
if (el) {
|
|
77
|
+
el.redraw(result.list); // 서버가 이미 실행해서 보낸 데이터를 바로 사용
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
74
81
|
/**
|
|
75
82
|
const result = await response.json();
|
|
76
83
|
|