You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Horde: Fix current step highlight in step history
#rnx [FYI] patrick.finegan [CL 30593124 by josh engebretson in ue5-main branch]
This commit is contained in:
@@ -359,7 +359,7 @@ const StepHistoryModal: React.FC<{ jobDetails: JobDetails, stepId: string | unde
|
||||
const commonSelectors = { ".ms-DetailsRow-cell": { "overflow": "visible", padding: 0 } };
|
||||
|
||||
if (ref.stepId === stepId && ref.jobId === jobDetails.id) {
|
||||
props.styles = { ...props.styles, root: { background: hordeTheme.horde.neutralBackground, selectors: { ...commonSelectors as any } } };
|
||||
props.styles = { ...props.styles, root: { background: `${hordeTheme.palette.neutralLight} !important`, selectors: { ...commonSelectors as any } } };
|
||||
} else {
|
||||
props.styles = { ...props.styles, root: { selectors: { ...commonSelectors as any } } };
|
||||
}
|
||||
|
||||
@@ -215,7 +215,7 @@ export const StepHistoryPanel: React.FC<{ jobDetails: JobDetailsV2; stepId: stri
|
||||
const commonSelectors = { ".ms-DetailsRow-cell": { "overflow": "visible" } };
|
||||
|
||||
if (ref.stepId === stepId && ref.jobId === jobDetails.jobId) {
|
||||
props.styles = { ...props.styles, root: { background: theme.palette.neutralLight, selectors: { ...commonSelectors as any } } };
|
||||
props.styles = { ...props.styles, root: { background: `${theme.palette.neutralLight} !important`, selectors: { ...commonSelectors as any } } };
|
||||
} else {
|
||||
props.styles = { ...props.styles, root: { selectors: { ...commonSelectors as any } } };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user