Skip to content

Commit 28052d5

Browse files
lancepiochDaneEveritt
authored andcommitted
Fix html closing tags (pterodactyl#1100)
1 parent 6316cfe commit 28052d5

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

resources/themes/pterodactyl/admin/eggs/new.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
<label for="pConfigStartup" class="form-label">Start Configuration</label>
109109
<textarea data-action="handle-tabs" id="pConfigStartup" name="config_startup" class="form-control" rows="6">{{ old('config_startup') }}</textarea>
110110
<p class="text-muted small">This should be a JSON representation of what values the daemon should be looking for when booting a server to determine completion.</p>
111+
</div>
111112
</div>
112113
</div>
113114
</div>

resources/themes/pterodactyl/admin/nodes/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
@foreach ($nodes as $node)
5757
<tr>
5858
<td class="text-center text-muted left-icon" data-action="ping" data-secret="{{ $node->daemonSecret }}" data-location="{{ $node->scheme }}://{{ $node->fqdn }}:{{ $node->daemonListen }}/v1"><i class="fa fa-fw fa-refresh fa-spin"></i></td>
59-
<td><a href="{{ route('admin.nodes.view', $node->id) }}">{{ $node->name }}</td>
59+
<td><a href="{{ route('admin.nodes.view', $node->id) }}">{{ $node->name }}</a></td>
6060
<td>{{ $node->location->short }}</td>
6161
<td>{{ $node->memory }} MB</td>
6262
<td>{{ $node->disk }} MB</td>

resources/themes/pterodactyl/server/files/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<p class="text-muted small" style="margin: 0 0 2px;">@lang('server.files.path', ['path' => '<code>/home/container</code>', 'size' => '<code>' . $node->upload_size . ' MB</code>'])</p>
3434
</div>
3535
</div>
36-
<div>
36+
</div>
3737
</div>
3838
@endsection
3939

resources/themes/pterodactyl/server/files/list.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
@if (isset($directory['first']) && $directory['first'] === true)
4646
<tr data-type="disabled">
4747
<td class="middle min-size"><i class="fa fa-folder" style="margin-left: 0.859px;"></i></td>
48-
<td><a href="/server/{{ $server->uuidShort }}/files" data-action="directory-view">&larr;</a></a></td>
48+
<td><a href="/server/{{ $server->uuidShort }}/files" data-action="directory-view">&larr;</a></td>
4949
<td class="hidden-xs"></td>
5050
<td class="hidden-xs"></td>
5151
<td></td>

resources/themes/pterodactyl/server/settings/allocation.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<p>@lang('server.config.allocation.help_text')</p>
7575
</div>
7676
</div>
77-
<div>
77+
</div>
7878
</div>
7979
@endsection
8080

0 commit comments

Comments
 (0)