Skip to content

Commit 543ea0b

Browse files
committed
enable for studyview
1 parent 68b3722 commit 543ea0b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

compose/neurosynth-frontend/src/components/HotTables/HotTables.module.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,11 @@
5050
user-select: none;
5151
font-size: 16px;
5252
line-height: 1;
53+
color: #555;
54+
font-weight: 700;
5355
display: flex;
5456
align-items: center;
5557
justify-content: center;
5658
padding: 2px 4px;
59+
min-width: 12px;
5760
}

compose/neurosynth-frontend/src/pages/Study/hooks/useEditStudyAnnotationsHotTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const useEditStudyAnnotationsHotTable = (readonly?: boolean) => {
5858
colHeaders: [
5959
'Analysis Name',
6060
'Analysis Description',
61-
...(noteKeys ?? []).map((x) => createColumnHeader(x.key, x.type, true, false)),
61+
...(noteKeys ?? []).map((x) => createColumnHeader(x.key, x.type, true, !readonly)),
6262
],
6363
colWidths: createColWidths(noteKeys || [], 150, 150, 150),
6464
};

0 commit comments

Comments
 (0)