ide-assi 0.660.0 → 0.662.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
CHANGED
|
@@ -202456,7 +202456,8 @@ class IdeFetch {
|
|
|
202456
202456
|
|
|
202457
202457
|
return fetch(url, options)
|
|
202458
202458
|
.then(res => {
|
|
202459
|
-
|
|
202459
|
+
console.log(url);
|
|
202460
|
+
if (url !== "/api/source/query") ninegrid.loading.hide();
|
|
202460
202461
|
if (!res.ok) {
|
|
202461
202462
|
return res.text().then(text => {
|
|
202462
202463
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -202452,7 +202452,8 @@ class IdeFetch {
|
|
|
202452
202452
|
|
|
202453
202453
|
return fetch(url, options)
|
|
202454
202454
|
.then(res => {
|
|
202455
|
-
|
|
202455
|
+
console.log(url);
|
|
202456
|
+
if (url !== "/api/source/query") ninegrid.loading.hide();
|
|
202456
202457
|
if (!res.ok) {
|
|
202457
202458
|
return res.text().then(text => {
|
|
202458
202459
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
|
@@ -19,7 +19,8 @@ export class IdeFetch {
|
|
|
19
19
|
|
|
20
20
|
return fetch(url, options)
|
|
21
21
|
.then(res => {
|
|
22
|
-
|
|
22
|
+
console.log(url);
|
|
23
|
+
if (url !== "/api/source/query") ninegrid.loading.hide();
|
|
23
24
|
if (!res.ok) {
|
|
24
25
|
return res.text().then(text => {
|
|
25
26
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|
package/package.json
CHANGED
|
@@ -19,7 +19,8 @@ export class IdeFetch {
|
|
|
19
19
|
|
|
20
20
|
return fetch(url, options)
|
|
21
21
|
.then(res => {
|
|
22
|
-
|
|
22
|
+
console.log(url);
|
|
23
|
+
if (url !== "/api/source/query") ninegrid.loading.hide();
|
|
23
24
|
if (!res.ok) {
|
|
24
25
|
return res.text().then(text => {
|
|
25
26
|
throw new Error(`API 오류 (${res.status}): ${text}`);
|