this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Skip if meta/ctrl/shift/alt/middle-click

+9
+9
src/components/status.jsx
··· 1091 1091 <Link 1092 1092 to={instance ? `/${instance}/s/${id}` : `/s/${id}`} 1093 1093 onClick={(e) => { 1094 + if ( 1095 + e.metaKey || 1096 + e.ctrlKey || 1097 + e.shiftKey || 1098 + e.altKey || 1099 + e.which === 2 1100 + ) { 1101 + return; 1102 + } 1094 1103 e.preventDefault(); 1095 1104 e.stopPropagation(); 1096 1105 onStatusLinkClick?.(e, status);