Skip to content

Commit

Permalink
set id
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickFuereder committed Nov 5, 2023
1 parent a299fed commit 5b2b1d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/js/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ async function deleteTrustedSsoClient(clientId) {
function createSSOClient(logoUrl, clientName, websiteUrl, clientId, clientSecret, redirects) {
const item = document.getElementById('ssoCredentials').getElementsByTagName('template')[0].content.cloneNode(true);

item.id = "sso_" + clientId;
item.setAttribute('id', 'sso_' + clientId)
item.querySelector('img').src = logoUrl;
item.querySelector('img').alt = clientName;
item.querySelector('img').title = clientName;
Expand Down

0 comments on commit 5b2b1d9

Please sign in to comment.