Restore title-url functionality on group titles
This commit is contained in:
@@ -27,3 +27,7 @@ export function isElementVisible(element) {
|
||||
export function clamp(value, min, max) {
|
||||
return Math.min(Math.max(value, min), max);
|
||||
}
|
||||
|
||||
export function openURLInNewTab(url) {
|
||||
window.open(url, '_blank', 'noopener,noreferrer')?.focus();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user