Skip to content

Commit 0752020

Browse files
authored
Merge pull request #426 from AppQuality/UN-456-wrong-order-for-os
fix: reverse the order os, device with device, os
2 parents 0f2ba42 + ddc2a44 commit 0752020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/Bugs/Detail/BugDuplicates/BugDuplicatesList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export const BugDuplicatesList = ({
5050
title={item.title.compact}
5151
pills={[
5252
...(item.title.context ? item.title.context : []),
53-
`${item.os.name} ${item.os.version}`,
5453
item.device,
54+
`${item.os.name} ${item.os.version}`,
5555
]}
5656
/>
5757
))}

0 commit comments

Comments
 (0)