Skip to content

Commit f2c53e0

Browse files
committed
Merge branch 'main' into feat/filter-by-handle
Signed-off-by: Adam Setch <[email protected]>
2 parents f065445 + baa5b0a commit f2c53e0

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
"css-loader": "7.1.2",
164164
"css-minimizer-webpack-plugin": "7.0.0",
165165
"date-fns": "4.1.0",
166-
"electron": "34.0.2",
166+
"electron": "34.1.0",
167167
"electron-builder": "25.1.8",
168168
"final-form": "4.20.10",
169169
"graphql-tag": "2.12.6",

pnpm-lock.yaml

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/components/settings/NotificationSettings.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -102,28 +102,28 @@ export const NotificationSettings: FC = () => {
102102
<Stack direction="vertical" gap="condensed">
103103
<Text>Show notification metric pills for:</Text>
104104
<Box className="pl-4">
105-
<ul>
106-
<li className="flex items-center gap-1">
105+
<Stack direction="vertical" gap="none">
106+
<Stack direction="horizontal" gap="condensed">
107107
<IssueClosedIcon size={Size.SMALL} />
108108
linked issues
109-
</li>
110-
<li className="flex items-center gap-1">
109+
</Stack>
110+
<Stack direction="horizontal" gap="condensed">
111111
<CheckIcon size={Size.SMALL} />
112112
pr reviews
113-
</li>
114-
<li className="flex items-center gap-1">
113+
</Stack>
114+
<Stack direction="horizontal" gap="condensed">
115115
<CommentIcon size={Size.SMALL} />
116116
comments
117-
</li>
118-
<li className="flex items-center gap-1">
117+
</Stack>
118+
<Stack direction="horizontal" gap="condensed">
119119
<TagIcon size={Size.SMALL} />
120120
labels
121-
</li>
122-
<li className="flex items-center gap-1">
121+
</Stack>
122+
<Stack direction="horizontal" gap="condensed">
123123
<MilestoneIcon size={Size.SMALL} />
124124
milestones
125-
</li>
126-
</ul>
125+
</Stack>
126+
</Stack>
127127
</Box>
128128
</Stack>
129129
}

0 commit comments

Comments
 (0)