Skip to content

Commit d5e2b28

Browse files
committed
Merge branch 'main' of github.com:webxdc/webxdc-dev
2 parents 132304e + d22099d commit d5e2b28

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

frontend/InstanceHeader.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ const InstanceHeader: Component<{
3030
return (
3131
<Flex gap="$1" justifyContent="space-between" alignItems="center">
3232
<Tooltip label="Click to see all messages for this instance">
33+
3334
<Text
35+
cursor="pointer"
3436
color={props.instance.color}
3537
fontSize="$2xl"
3638
fontWeight="bold"
@@ -41,6 +43,7 @@ const InstanceHeader: Component<{
4143
</Tooltip>
4244
<Tooltip label="Click to see all sent messages for this instance">
4345
<Badge
46+
cursor="pointer"
4447
onClick={() =>
4548
props.setSearch({ instanceId: props.instance.id, type: "sent" })
4649
}
@@ -50,6 +53,7 @@ const InstanceHeader: Component<{
5053
</Tooltip>
5154
<Tooltip label="Click to see all received messages for this instance">
5255
<Badge
56+
cursor="pointer"
5357
onClick={() =>
5458
props.setSearch({
5559
instanceId: props.instance.id,

0 commit comments

Comments
 (0)