File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changes
2
2
3
+ ## June 17, 2025
4
+ - Added GitHub link to application toolbar that opens the issues page for easy bug reporting
5
+
3
6
## June 12, 2025
4
7
- Optimized experimental search panel to eliminate repeated script executions by implementing client-side filtering
5
8
- Added dandiset counts next to contact person names in experimental search panel
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import StatusBar from "@components/StatusBar";
2
2
import "@css/App.css" ;
3
3
import { useWindowDimensions } from "@fi-sci/misc" ;
4
4
import SettingsIcon from "@mui/icons-material/Settings" ;
5
+ import GitHubIcon from "@mui/icons-material/GitHub" ;
5
6
import {
6
7
AppBar ,
7
8
Button ,
@@ -237,6 +238,20 @@ const AppContent = () => {
237
238
>
238
239
Neurosift (v2)
239
240
</ Typography >
241
+ < Tooltip title = "Report issues on GitHub" >
242
+ < IconButton
243
+ color = "inherit"
244
+ onClick = { ( ) => {
245
+ window . open (
246
+ "https://github.com/flatironinstitute/neurosift/issues" ,
247
+ "_blank" ,
248
+ ) ;
249
+ } }
250
+ sx = { { ml : 2 } }
251
+ >
252
+ < GitHubIcon />
253
+ </ IconButton >
254
+ </ Tooltip >
240
255
< Tooltip title = "Settings" >
241
256
< IconButton
242
257
color = "inherit"
You can’t perform that action at this time.
0 commit comments