Allow double-click to refresh on Notifications page
This commit is contained in:
parent
14b92f3f98
commit
dab0d61ac8
|
@ -285,6 +285,11 @@ function Notifications({ columnMode }) {
|
|||
scrollableRef.current?.scrollTo({ top: 0, behavior: 'smooth' });
|
||||
}
|
||||
}}
|
||||
onDblClick={(e) => {
|
||||
if (!e.target.closest('a, button')) {
|
||||
loadNotifications(true);
|
||||
}
|
||||
}}
|
||||
class={uiState === 'loading' ? 'loading' : ''}
|
||||
>
|
||||
<div class="header-grid">
|
||||
|
|
Loading…
Reference in a new issue