forked from Alex/Pterodactyl-Panel
Merge pull request #2476 from AreYouRlyScared/fix
Fix missing semi, Fixed task row overflow
This commit is contained in:
commit
78a3f933d1
@ -49,7 +49,7 @@ const PowerControls = () => {
|
|||||||
<StopOrKillButton onPress={action => sendPowerCommand(action)}/>
|
<StopOrKillButton onPress={action => sendPowerCommand(action)}/>
|
||||||
</Can>
|
</Can>
|
||||||
</div>
|
</div>
|
||||||
)
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default PowerControls;
|
export default PowerControls;
|
||||||
|
@ -81,7 +81,7 @@ export default ({ schedule, task }: Props) => {
|
|||||||
<div css={tw`md:ml-6 mt-2`}>
|
<div css={tw`md:ml-6 mt-2`}>
|
||||||
{task.action === 'backup' &&
|
{task.action === 'backup' &&
|
||||||
<p css={tw`text-xs uppercase text-neutral-400 mb-1`}>Ignoring files & folders:</p>}
|
<p css={tw`text-xs uppercase text-neutral-400 mb-1`}>Ignoring files & folders:</p>}
|
||||||
<div css={tw`font-mono bg-neutral-800 rounded py-1 px-2 text-sm w-auto whitespace-pre inline-block break-all`}>
|
<div css={tw`font-mono bg-neutral-800 rounded py-1 px-2 text-sm w-auto inline-block whitespace-pre-wrap break-all`}>
|
||||||
{task.payload}
|
{task.payload}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user