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 7e6357f commit 56f5d15Copy full SHA for 56f5d15
.gitignore
@@ -22,6 +22,7 @@ speed-measure-plugin.json
22
*.launch
23
.settings/
24
*.sublime-workspace
25
+*.iml
26
27
# IDE - VSCode
28
.vscode/*
projects/elements/src/lib/lazy-elements/lazy-elements-loader.service.ts
@@ -73,7 +73,7 @@ export class LazyElementsLoaderService {
73
const config = this.getElementConfig(tag);
74
75
if (!url) {
76
- if (!config) {
+ if (!config || !config.url) {
77
throw new Error(`${LOG_PREFIX} - url for <${tag}> not found`);
78
}
79
url = config.url;
0 commit comments