I'm in a bit of a trouble and I hope that I'll find the answer here:
I have an angular 5 app using polymer 2 components.
First I add the elements dynamically the head of the dom like this
<link id="ace-widget-link" rel="import" href="https://lostinbrittany.github.io/ace-widget/components/ace-widget/ace-widget.html">
Then the user select some elements to add to his dashboard
What I do is to append the element tag to the dom like so <ace-widget></ace-widget>
Now here comes the problems:
The first element that I add is only displayed when I refresh the page.
If add two or more elements only the first one appears (even after refresh).
Note that when I added the links statically to index.html everything worked fine.