Fix ordering of loadshow dialog
This commit is contained in:
parent
bead964ebf
commit
9e09ffe3bb
1 changed files with 24 additions and 27 deletions
|
@ -36,9 +36,6 @@ export function LoadShowDialogue({ close }: { close: () => any }) {
|
|||
});
|
||||
}, [state]);
|
||||
return (
|
||||
<>
|
||||
<ResultsPlaceholder state={state} />
|
||||
{state !== "searching" && (
|
||||
<>
|
||||
<div
|
||||
className="btn btn-outline-danger outline float-right"
|
||||
|
@ -62,9 +59,9 @@ export function LoadShowDialogue({ close }: { close: () => any }) {
|
|||
>
|
||||
<FaCircleNotch size={15} /> Mark All Unplayed
|
||||
</div>
|
||||
|
||||
<h2>Load Show</h2>
|
||||
</>
|
||||
)}
|
||||
<ResultsPlaceholder state={state} />
|
||||
|
||||
<div className="loadshow-list">
|
||||
{items.map((item, index) => (
|
||||
|
|
Loading…
Reference in a new issue