aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/issues
diff options
context:
space:
mode:
authorRevanshu Paliwal <revanshu.paliwal@sonarsource.com>2023-10-06 10:32:28 +0200
committersonartech <sonartech@sonarsource.com>2023-10-09 20:02:42 +0000
commit11643905e95c2cf811c26b767c71348c7df59086 (patch)
tree9a828a631f91f989562fdff136a360e8f305eb9c /server/sonar-web/src/main/js/apps/issues
parentafef2dc11b6006b5f8b9fbb8739c469bef7e857e (diff)
downloadsonarqube-11643905e95c2cf811c26b767c71348c7df59086.tar.gz
sonarqube-11643905e95c2cf811c26b767c71348c7df59086.zip
SONAR-20625 Removing border top from issue list footer
Diffstat (limited to 'server/sonar-web/src/main/js/apps/issues')
-rw-r--r--server/sonar-web/src/main/js/apps/issues/issues-subnavigation/SubnavigationIssuesList.tsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/issues-subnavigation/SubnavigationIssuesList.tsx b/server/sonar-web/src/main/js/apps/issues/issues-subnavigation/SubnavigationIssuesList.tsx
index 4366881c23b..4fcdbf16cac 100644
--- a/server/sonar-web/src/main/js/apps/issues/issues-subnavigation/SubnavigationIssuesList.tsx
+++ b/server/sonar-web/src/main/js/apps/issues/issues-subnavigation/SubnavigationIssuesList.tsx
@@ -89,7 +89,7 @@ export default function SubnavigationIssuesList(props: Props) {
})}
</StyledList>
{paging && paging.total > 0 && (
- <StyledFooter
+ <ListFooter
className="sw-my-0 sw-py-4"
count={issues.length}
loadMore={props.fetchMoreIssues}
@@ -108,10 +108,6 @@ const StyledList = styled.ul`
}
`;
-const StyledFooter = styled(ListFooter)`
- border-top: ${themeBorder('default', 'filterbarBorder')};
-`;
-
const StyledWrapper = styled.div`
background-color: ${themeColor('filterbar')};
`;