mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-21 15:48:52 -05:00
Move Updater Buttons
This commit is contained in:
parent
d08ca66fc1
commit
f76aff3ebf
1 changed files with 11 additions and 15 deletions
|
@ -111,21 +111,6 @@ function Updatable(props: CommonProps) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{!updates && updateError ? (
|
|
||||||
<>
|
|
||||||
<Forms.FormText>Failed to check updates. Check the console for more info</Forms.FormText>
|
|
||||||
<ErrorCard style={{ padding: "1em" }}>
|
|
||||||
<p>{updateError.stderr || updateError.stdout || "An unknown error occurred"}</p>
|
|
||||||
</ErrorCard>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<Forms.FormText className={Margins.bottom8}>
|
|
||||||
{isOutdated ? (updates.length === 1 ? "There is 1 Update" : `There are ${updates.length} Updates`) : "Up to Date!"}
|
|
||||||
</Forms.FormText>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{isOutdated && <Changes updates={updates} {...props} />}
|
|
||||||
|
|
||||||
<Flex className={classes(Margins.bottom8, Margins.top8)}>
|
<Flex className={classes(Margins.bottom8, Margins.top8)}>
|
||||||
{isOutdated && <Button
|
{isOutdated && <Button
|
||||||
size={Button.Sizes.SMALL}
|
size={Button.Sizes.SMALL}
|
||||||
|
@ -174,6 +159,17 @@ function Updatable(props: CommonProps) {
|
||||||
Check for Updates
|
Check for Updates
|
||||||
</Button>
|
</Button>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
{!updates && updateError ? (
|
||||||
|
<>
|
||||||
|
<Forms.FormText>Failed to check updates. Check the console for more info</Forms.FormText>
|
||||||
|
<ErrorCard style={{ padding: "1em" }}>
|
||||||
|
) : (
|
||||||
|
<Forms.FormText className={Margins.bottom8}>
|
||||||
|
{isOutdated ? (updates.length === 1 ? "There is 1 Update" : `There are ${updates.length} Updates`) : "Up to Date!"}
|
||||||
|
</Forms.FormText>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{isOutdated && <Changes updates={updates} {...props} />}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue