]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-20625 Removing border top from issue list footer
authorRevanshu Paliwal <revanshu.paliwal@sonarsource.com>
Fri, 6 Oct 2023 08:32:28 +0000 (10:32 +0200)
committersonartech <sonartech@sonarsource.com>
Mon, 9 Oct 2023 20:02:42 +0000 (20:02 +0000)
server/sonar-web/src/main/js/apps/issues/issues-subnavigation/SubnavigationIssuesList.tsx

index 4366881c23b7022051419e4871cb4fe7e066c6fb..4fcdbf16cac0e95205f6ad9fa210906f4dd6ab09 100644 (file)
@@ -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')};
 `;