Fix missing semi, Fixed task tow overflow

Was suppsoe to be correct in https://github.com/pterodactyl/panel/pull/2352 but seems to be picky. Should now correctly show a multiline text box and not a long skinny text box when the text overflows.

Also, fixed a missing semicolon. 👍
This commit is contained in:
Charles Morgan 2020-10-11 04:35:26 -04:00
parent a4d7170fac
commit c8b00f0ccf
No known key found for this signature in database
GPG key ID: D71946CD723249BD
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ const PowerControls = () => {
<StopOrKillButton onPress={action => sendPowerCommand(action)}/>
</Can>
</div>
)
);
};
export default PowerControls;