made API endpoints copyable
This commit is contained in:
@@ -959,4 +959,9 @@ function saveUserColumnPreferences(importMode) {
|
||||
errorToast(genericErrorMessage());
|
||||
}
|
||||
});
|
||||
}
|
||||
function copyToClipboard(e) {
|
||||
var textToCopy = e.textContent;
|
||||
navigator.clipboard.writeText(textToCopy);
|
||||
successToast("Copied to Clipboard");
|
||||
}
|
||||
Reference in New Issue
Block a user