Skip to content

Commit

Permalink
sso redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickFuereder committed Nov 5, 2023
1 parent d42bf7d commit f666928
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Assets/js/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,9 @@ async function addSSORedirect(clientId) {
deleteBtn.innerText = 'Delete';
deleteBtn.addEventListener('click', async () => await deleteSSORedirect(clientId, res.data.id));
redirect.appendChild(deleteBtn);
item.querySelector('#sso_redirects').appendChild(redirect);

console.log(redirect);
document.getElementById("sso_" + clientId).querySelector('#sso_redirects').appendChild(redirect);
}

async function saveSSOClient(clientId) {
Expand Down

0 comments on commit f666928

Please sign in to comment.