Skip to content

Commit 2041bc0

Browse files
committed
Merge branch 'develop' of https://github.com/Pterodactyl/Panel into develop
2 parents ebe3f6a + 78a3f93 commit 2041bc0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

resources/scripts/components/server/PowerControls.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const PowerControls = () => {
4949
<StopOrKillButton onPress={action => sendPowerCommand(action)}/>
5050
</Can>
5151
</div>
52-
)
52+
);
5353
};
5454

5555
export default PowerControls;

resources/scripts/components/server/schedules/ScheduleTaskRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default ({ schedule, task }: Props) => {
8181
<div css={tw`md:ml-6 mt-2`}>
8282
{task.action === 'backup' &&
8383
<p css={tw`text-xs uppercase text-neutral-400 mb-1`}>Ignoring files & folders:</p>}
84-
<div css={tw`font-mono bg-neutral-800 rounded py-1 px-2 text-sm w-auto whitespace-pre inline-block break-all`}>
84+
<div css={tw`font-mono bg-neutral-800 rounded py-1 px-2 text-sm w-auto inline-block whitespace-pre-wrap break-all`}>
8585
{task.payload}
8686
</div>
8787
</div>

resources/views/admin/servers/new.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
</div>
159159

160160
<div class="form-group col-xs-6">
161-
<label for="pThreads">CPU Threads</label>
161+
<label for="pThreads">CPU Pinning</label>
162162

163163
<div>
164164
<input type="text" id="pThreads" name="threads" class="form-control" value="{{ old('threads') }}" />

resources/views/admin/servers/view/build.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<p class="text-muted small">Each <em>physical</em> core on the system is considered to be <code>100%</code>. Setting this value to <code>0</code> will allow a server to use CPU time without restrictions.</p>
3939
</div>
4040
<div class="form-group">
41-
<label for="threads" class="control-label">CPU Threads</label>
41+
<label for="threads" class="control-label">CPU Pinning</label>
4242
<div>
4343
<input type="text" name="threads" class="form-control" value="{{ old('threads', $server->threads) }}"/>
4444
</div>

resources/views/admin/servers/view/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
</td>
6969
</tr>
7070
<tr>
71-
<td>CPU Threads</td>
71+
<td>CPU Pinning</td>
7272
<td>
7373
@if($server->threads != null)
7474
<code>{{ $server->threads }}</code>

0 commit comments

Comments
 (0)