Skip to content

Commit 51904e7

Browse files
Merge pull request #463 from AppQuality/fix-device-os-order
fix(bug-father): fix order device, os in duplicated bugs... bug father
2 parents f1c27d6 + fd38fd9 commit 51904e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/components/BugDetail/BugDuplicates/BugFather.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export const BugFather = ({ cid, bugId }: { cid: number; bugId: number }) => {
3636
title={data.father.title.compact}
3737
pills={[
3838
...(data.father.title.context ? data.father.title.context : []),
39-
`${data.father.os.name} ${data.father.os.version}`,
4039
data.father.device,
40+
`${data.father.os.name} ${data.father.os.version}`,
4141
]}
4242
/>
4343
</>

0 commit comments

Comments
 (0)