We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3385dba commit 309d341Copy full SHA for 309d341
src/compas/CompasNsdoc.ts
@@ -34,7 +34,6 @@ async function processNsdocFile(
34
await CompasNSDocFileService()
35
.getNsdocFile(id)
36
.then(document => {
37
- console.log('document: ', document);
38
const nsdocContent =
39
document.querySelectorAll('NsdocFile').item(0).textContent ?? '';
40
component.dispatchEvent(newLoadNsdocEvent(nsdocContent, filename));
@@ -69,7 +68,6 @@ export async function loadNsdocFiles(component: Element): Promise<void> {
69
68
);
70
})
71
.catch(reason => {
72
- console.log('reason: ', reason);
73
createLogEvent(component, reason);
74
});
75
}
0 commit comments