Skip to content

Commit 906e8ed

Browse files
authored
Merge pull request #699 from AppQuality/fix-bug-need-review
Fix-bug-need-review
2 parents 15a17f6 + e5a630b commit 906e8ed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/common/components/BugDetail/BugStateDropdown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ const BugStateDropdown = ({ bug }: { bug: Bug }) => {
238238
content={t('__BUGS_PAGE_BUG_DETAIL_NEED_REVIEW_TOOLTIP')}
239239
>
240240
<Select isCompact disabled>
241-
<StyledItem>
241+
<SelectedItem>
242242
{t('__BUGS_PAGE_BUG_DETAIL_NEED_REVIEW')}
243-
</StyledItem>
243+
</SelectedItem>
244244
</Select>
245245
</Tooltip>
246246
) : (

src/pages/Bugs/Content/BugsTable/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { useTableData } from './hooks/useTableData';
1010
const Wrapper = styled.div<{
1111
isFetching?: boolean;
1212
}>`
13-
padding-top: ${(p) => p.theme.space.lg}};
13+
padding-top: ${(p) => p.theme.space.lg};
1414
1515
${(p) =>
1616
p.isFetching &&

0 commit comments

Comments
 (0)