We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8bc1d25 + 9693f3b commit c171f33Copy full SHA for c171f33
src/pages/Bugs/Detail/Meta.tsx
@@ -84,16 +84,20 @@ export default ({
84
<Pipe style={{ height: '20px' }} />
85
<IconPill
86
size="medium"
87
- title={<InfoTitle>{bug.device.type}</InfoTitle>}
+ title={
88
+ <InfoTitle>
89
+ {bug.device.type === 'desktop'
90
+ ? bug.device.desktop_type
91
+ : `${bug.device.manufacturer} ${bug.device.model}`}
92
+ </InfoTitle>
93
+ }
94
icon={getDeviceIcon(bug.device.type)}
95
style={{ textTransform: 'capitalize' }}
96
/>
97
98
title={
99
<InfoTitle>
- {bug.device.type === 'desktop'
- ? bug.device.desktop_type
- : `${bug.device.manufacturer} ${bug.device.model}`}
100
+ {bug.device.os} {bug.device.os_version}
101
</InfoTitle>
102
}
103
icon={<OSIcon />}
0 commit comments