mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
UI: 3 unreleased bug fixes (#33247)
## For #33229, #33241, #33222 ### Spacing below tabs is correct: <img width="955" height="755" alt="Screenshot 2025-09-19 at 2 57 56 PM" src="https://github.com/user-attachments/assets/e21adbf2-43e9-4e7a-8dfb-a5a033e3e787" /> <img width="1188" height="775" alt="Screenshot 2025-09-19 at 2 58 54 PM" src="https://github.com/user-attachments/assets/12fadd73-2f0e-4e38-8126-89aab65a9f2a" /> ### Back to script activity link has no extra width: <img width="1188" height="775" alt="Screenshot 2025-09-19 at 3 30 26 PM" src="https://github.com/user-attachments/assets/5d5a6cfb-5dc5-4010-b83a-0d666a52a206" /> ### Team is maintained through script batch progress –> details –> view all hosts flow (missing host name in GIF being tracked in different bug)  - [x] QA'd all new/changed functionality manually --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
This commit is contained in:
parent
b691cd4934
commit
1b6a7e567b
3 changed files with 10 additions and 0 deletions
|
|
@ -182,6 +182,7 @@ const ScriptBatchDetailsPage = ({
|
|||
queryParams={{
|
||||
script_batch_execution_status: selectedHostStatus, // refers to script batch host status, may update pending conv w Rachael
|
||||
script_batch_execution_id: batchExecutionId,
|
||||
team_id: batchDetails?.team_id,
|
||||
}}
|
||||
/>
|
||||
</span>
|
||||
|
|
|
|||
|
|
@ -44,4 +44,10 @@
|
|||
@include help-text;
|
||||
}
|
||||
}
|
||||
.back-link {
|
||||
align-self: flex-start;
|
||||
}
|
||||
.react-tabs__tab-list {
|
||||
margin-bottom: $pad-large;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,6 +35,9 @@
|
|||
&__empty {
|
||||
@include tab-empty-state;
|
||||
}
|
||||
.react-tabs__tab-list {
|
||||
margin-bottom: $pad-large;
|
||||
}
|
||||
|
||||
.paginated-list .loading-overlay {
|
||||
position: initial;
|
||||
|
|
|
|||
Loading…
Reference in a new issue