From c8b00f0ccf82b19717351c69f8b471af374eb21a Mon Sep 17 00:00:00 2001 From: Charles Morgan Date: Sun, 11 Oct 2020 04:35:26 -0400 Subject: [PATCH] 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. :+1: --- resources/scripts/components/server/PowerControls.tsx | 2 +- .../scripts/components/server/schedules/ScheduleTaskRow.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/scripts/components/server/PowerControls.tsx b/resources/scripts/components/server/PowerControls.tsx index e21669f54..e88ffe3f0 100644 --- a/resources/scripts/components/server/PowerControls.tsx +++ b/resources/scripts/components/server/PowerControls.tsx @@ -49,7 +49,7 @@ const PowerControls = () => { sendPowerCommand(action)}/> - ) + ); }; export default PowerControls; diff --git a/resources/scripts/components/server/schedules/ScheduleTaskRow.tsx b/resources/scripts/components/server/schedules/ScheduleTaskRow.tsx index c81fb48d6..c79fafd03 100644 --- a/resources/scripts/components/server/schedules/ScheduleTaskRow.tsx +++ b/resources/scripts/components/server/schedules/ScheduleTaskRow.tsx @@ -81,7 +81,7 @@ export default ({ schedule, task }: Props) => {
{task.action === 'backup' &&

Ignoring files & folders:

} -
+
{task.payload}