mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
fix(dependencies): fix versions
This commit is contained in:
parent
62810aeb3d
commit
5523029e88
4 changed files with 144 additions and 113 deletions
|
|
@ -64,10 +64,12 @@ function createTag(tagName, attrMap, publicPath) {
|
|||
}
|
||||
}
|
||||
|
||||
return name + '="' + value + '"';
|
||||
return `${name}="${value}"`;
|
||||
});
|
||||
|
||||
return '<' + tagName + ' ' + attributes.join(' ') + '>';
|
||||
const closingTag = tagName === 'script' ? '</script>' : '';
|
||||
|
||||
return `<${tagName} ${attributes.join(' ')}>${closingTag}`;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue