File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,9 @@ const InstanceHeader: Component<{
30
30
return (
31
31
< Flex gap = "$1" justifyContent = "space-between" alignItems = "center" >
32
32
< Tooltip label = "Click to see all messages for this instance" >
33
+
33
34
< Text
35
+ cursor = "pointer"
34
36
color = { props . instance . color }
35
37
fontSize = "$2xl"
36
38
fontWeight = "bold"
@@ -41,6 +43,7 @@ const InstanceHeader: Component<{
41
43
</ Tooltip >
42
44
< Tooltip label = "Click to see all sent messages for this instance" >
43
45
< Badge
46
+ cursor = "pointer"
44
47
onClick = { ( ) =>
45
48
props . setSearch ( { instanceId : props . instance . id , type : "sent" } )
46
49
}
@@ -50,6 +53,7 @@ const InstanceHeader: Component<{
50
53
</ Tooltip >
51
54
< Tooltip label = "Click to see all received messages for this instance" >
52
55
< Badge
56
+ cursor = "pointer"
53
57
onClick = { ( ) =>
54
58
props . setSearch ( {
55
59
instanceId : props . instance . id ,
You can’t perform that action at this time.
0 commit comments