Skip to content

Commit 84172bd

Browse files
committed
fix(bugs): Use correct data and order on sibling column
1 parent ebc16da commit 84172bd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/pages/Bugs/BugsTable/hooks/useTableColumns.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ export const useTableColumns = () => {
1111
width: 'auto',
1212
},
1313
{
14-
key: 'severity',
15-
header: t('__BUGS_TABLE_SEVERITY_HEADER_COLUMN'),
14+
key: 'siblings',
15+
header: t('__BUGS_TABLE_DUPLICATE_HEADER_COLUMN'),
1616
width: '90px',
1717
},
1818
{
19-
key: 'siblings',
20-
header: t('__BUGS_TABLE_DUPLICATE_HEADER_COLUMN'),
19+
key: 'severity',
20+
header: t('__BUGS_TABLE_SEVERITY_HEADER_COLUMN'),
2121
width: '90px',
2222
},
2323
{

src/pages/Bugs/BugsTable/utils/mapBugsToTableData.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { getSelectedBugId } from 'src/features/bugsPage/bugsPageSlice';
88
import styled from 'styled-components';
99
import { BugTitle } from '../components/BugTitle';
1010
import { TableBugType } from '../../types';
11-
import { ReactComponent as FatherIcon } from './assets/father-icon.svg';
11+
import { ReactComponent as FatherIcon } from '../assets/father-icon.svg';
1212

1313
const DuplicateContainer = styled((props) => <SM isBold {...props} />)`
1414
display: flex;

0 commit comments

Comments
 (0)