Skip to content

Commit b0c8390

Browse files
committed
Fix display of multi-word keys
1 parent 6ef62c7 commit b0c8390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<table class="table table-hover">
2626
@foreach($resources as $resource)
2727
<tr>
28-
<td class="col-sm-3 strong">{{ title_case($resource) }}</td>
28+
<td class="col-sm-3 strong">{{ str_replace('_', ' ', title_case($resource)) }}</td>
2929
<td class="col-sm-3 radio radio-primary text-center">
3030
<input type="radio" id="r_{{ $resource }}" name="r_{{ $resource }}" value="{{ $permissions['r'] }}">
3131
<label for="r_{{ $resource }}">Read</label>

0 commit comments

Comments
 (0)