Skip to content

Commit

Permalink
Remove li
Browse files Browse the repository at this point in the history
  • Loading branch information
MPParsley committed May 14, 2024
1 parent 06a6b5d commit 83d435a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions webcomponents/besluiten-detail/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class BesluitenDetail extends HTMLElement {

createDetail() {
return (`
<li class="cs--blue" style="list-style-type:none;">
<div class="cs--blue">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fira+Sans:400,600,700">
<link rel="stylesheet" href="https://stijlgids.stad.gent/v6/css/styleguide.css">
<link rel="stylesheet" href="https://stijlgids.stad.gent/v6/css/main.css">
Expand All @@ -36,7 +36,7 @@ class BesluitenDetail extends HTMLElement {
</dl>
<span class="resolutions-detail__status resolutions-detail__status--true" >${this.status} status</span>
</div>
</li>
</div>
`);
}

Expand Down
4 changes: 2 additions & 2 deletions webcomponents/besluiten-lijst/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class BesluitenLijst extends HTMLElement {
datum="${besluit.zitting_datum.value}"
url="${url}"
status="@todo"
/>
></besluiten-detail>
`;
}

Expand All @@ -37,7 +37,7 @@ class BesluitenLijst extends HTMLElement {
besluiten.forEach(besluit => {
list += this.createDetail(besluit)
});
this.shadowRoot.querySelectorAll(".js-resolutions-items")[0].innerHTML = `<ul>${list}</ul>`;
this.shadowRoot.querySelectorAll(".js-resolutions-items")[0].innerHTML = list;
}

async getBesluiten() {
Expand Down
4 changes: 2 additions & 2 deletions webcomponents/reglementen-lijst/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ReglementenLijst extends HTMLElement {
datum="${reglement.publicatie_datum.value}"
url="${url}"
type="@todo"
/>
></reglementen-detail>
`;
}

Expand All @@ -38,7 +38,7 @@ class ReglementenLijst extends HTMLElement {
reglementen.forEach(reglement => {
list += this.createDetail(reglement)
});
this.shadowRoot.querySelectorAll(".js-reglementen-items")[0].innerHTML = `<ul>${list}</ul>`;
this.shadowRoot.querySelectorAll(".js-reglementen-items")[0].innerHTML = list;
}

async getReglementen() {
Expand Down

0 comments on commit 83d435a

Please sign in to comment.