Certificate generation and sync, implemented proper grant and revocation flows. Pubkey uploading. Added openssh-client to Dockerfile
This commit is contained in:
@@ -718,3 +718,17 @@ const renderCharts = () => {
|
||||
changeDarkModeSettings();
|
||||
});
|
||||
};
|
||||
|
||||
function getCurrentTab() {
|
||||
const fragment = window.location.hash?.replace('#', '');
|
||||
|
||||
if (!fragment) {
|
||||
return null
|
||||
}
|
||||
|
||||
if (!document.getElementById(`${fragment}-group`)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return fragment
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user