Skip to content

Commit

Permalink
chore: resolve merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickarlt committed Mar 24, 2023
1 parent 1d6ebed commit cfacd71
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions demos/express-oauth-advanced/pages/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,10 @@ <h1>The App!</h1>

let html = ''
let template = document.getElementById("web-map-card");
<<<<<<< HEAD
document.getElementById("webmaps").innerHTML = results.reduce((html, item) => {
item.thumbnail = `${session.portal}/content/items/${item.id}/info/${item.thumbnail}?token=${session.token}`;
return html += interpolate(template.innerHTML, item);
}, "")
=======
document.getElementById("webmaps").innerHTML = results.length ? results.reduce((html, item) => {
item.thumbnail = `${session.portal}/content/items/${item.id}/info/${item.thumbnail}?token=${session.token}`;
return html += interpolate(template.innerHTML, item);
}, "") : '<div class="cell">No webmaps found</div>'
>>>>>>> 403e1382661098a65f35c4485942f13f365b9278

e.preventDefault();
});
Expand Down

0 comments on commit cfacd71

Please sign in to comment.