Fix clone panel js error (#32798)

side effect of jquery removal, fix #32797
pull/32790/head^2
wxiaoguang 2 months ago committed by GitHub
parent 1893b32670
commit 17f0411441
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -75,12 +75,12 @@ function initCloneSchemeUrlSelection(parent: Element) {
};
updateClonePanelUi();
tabSsh.addEventListener('click', () => {
// tabSsh or tabHttps might not both exist, eg: guest view, or one is disabled by the server
tabSsh?.addEventListener('click', () => {
localStorage.setItem('repo-clone-protocol', 'ssh');
updateClonePanelUi();
});
tabHttps.addEventListener('click', () => {
tabHttps?.addEventListener('click', () => {
localStorage.setItem('repo-clone-protocol', 'https');
updateClonePanelUi();
});

Loading…
Cancel
Save