-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scan history selection improvements (#2283)
* scan history selection improvements * update codeowners * added back the test ids * add more spacing between refresh button and dropdown target * do not show previous data if cloud posture scan is in progress * fix compare cloud scan incorrect query order
- Loading branch information
Showing
20 changed files
with
1,076 additions
and
918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
/deepfence_frontend/ @manV @milan-deepfence | ||
/deepfence_frontend/ @manV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
deepfence_frontend/apps/dashboard/src/components/scan-history/HistoryControlsSkeleton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export const HistoryControlsSkeleton = () => { | ||
return ( | ||
<div className="flex items-center gap-x-2"> | ||
<div className="h-4 w-40 bg-gray-200 dark:bg-gray-800 rounded"></div> | ||
<div className="h-4 w-32 bg-gray-200 dark:bg-gray-800 rounded"></div> | ||
<div className="h-4 w-28 bg-gray-200 dark:bg-gray-800 rounded"></div> | ||
<div className="h-4 w-20 bg-gray-200 dark:bg-gray-800 rounded"></div> | ||
<div className="h-4 w-32 bg-gray-200 dark:bg-gray-800 rounded"></div> | ||
<div className="h-4 w-44 bg-gray-200 dark:bg-gray-800 rounded"></div> | ||
</div> | ||
); | ||
}; |
Oops, something went wrong.