-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Execution Dashboard Backend Pagination & Frontend Loading Icon (#3105)
This PR addresses the issue #3016 that execution dashboard takes long time to load. Changed made: - Add loading icon in the frontend while loading the execution info - Move the pagination to backend, including the sorting and filtering function. Loading Icon: ![execution_loading](https://github.com/user-attachments/assets/d7494b54-eb15-4361-b1cd-a70f276aa6f6) Page Size Change: ![newnewnew](https://github.com/user-attachments/assets/9e1da835-7b2c-4ca1-a02b-87b7b3694101) --------- Co-authored-by: Chris <[email protected]>
- Loading branch information
1 parent
13cb52e
commit c5c0701
Showing
5 changed files
with
239 additions
and
136 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
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
core/gui/src/app/dashboard/component/admin/execution/admin-execution.component.scss
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 @@ | ||
.loading-container { | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: column; | ||
height: 300px; | ||
} | ||
|
||
.execution-table { | ||
display: block; | ||
grid-row-start: 3; | ||
grid-row-end: 4; | ||
} |
Oops, something went wrong.