Left pane design tweaks
This commit is contained in:
parent
1c43e7501c
commit
c857250b12
5 changed files with 84 additions and 23 deletions
|
@ -566,10 +566,14 @@ export const LeftPane: React.FC<PropsType> = ({
|
|||
},
|
||||
updateSearchTerm,
|
||||
})}
|
||||
{renderExpiredBuildDialog({ containerWidthBreakpoint: widthBreakpoint })}
|
||||
{renderRelinkDialog({ containerWidthBreakpoint: widthBreakpoint })}
|
||||
{renderNetworkStatus({ containerWidthBreakpoint: widthBreakpoint })}
|
||||
{renderUpdateDialog({ containerWidthBreakpoint: widthBreakpoint })}
|
||||
<div className="module-left-pane__dialogs">
|
||||
{renderExpiredBuildDialog({
|
||||
containerWidthBreakpoint: widthBreakpoint,
|
||||
})}
|
||||
{renderRelinkDialog({ containerWidthBreakpoint: widthBreakpoint })}
|
||||
{renderNetworkStatus({ containerWidthBreakpoint: widthBreakpoint })}
|
||||
{renderUpdateDialog({ containerWidthBreakpoint: widthBreakpoint })}
|
||||
</div>
|
||||
{preRowsNode && <React.Fragment key={0}>{preRowsNode}</React.Fragment>}
|
||||
<Measure bounds>
|
||||
{({ contentRect, measureRef }: MeasuredComponentProps) => (
|
||||
|
|
|
@ -19,6 +19,7 @@ type PropsType = {
|
|||
value: string;
|
||||
};
|
||||
|
||||
// TODO DESKTOP-3068: merge with <SearchInput />
|
||||
export const LeftPaneSearchInput = forwardRef<HTMLInputElement, PropsType>(
|
||||
(
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue