Skip to content

Commit ee78a39

Browse files
committed
Grammatical display changes
1 parent 00e125c commit ee78a39

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<input type="text" name="file" class="form-control" value="{{ old('file') }}" />
5656
<span class="input-group-addon">/index.js</span>
5757
</div>
58-
<p class="text-muted"><small>This should be the name of the folder on the daemon that contains all of the service logic.</small></p>
58+
<p class="text-muted"><small>This should be a unique alpha-numeric <code>(a-z)</code> name used to identify the service.</small></p>
5959
</div>
6060
<div class="col-md-6 form-group">
6161
<label class="control-label">Display Executable:</label>

resources/views/admin/services/packs/byoption.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<table class="table table-bordered table-hover">
3737
<thead>
3838
<tr>
39-
<th>Name</th>
39+
<th>Pack Name</th>
4040
<th>Version</th>
4141
<th>UUID</th>
4242
<th>Selectable</th>
@@ -47,7 +47,7 @@
4747
@foreach ($packs as $pack)
4848
<tr>
4949
<td><a href="{{ route('admin.services.packs.edit', $pack->id) }}">{{ $pack->name }}</a></td>
50-
<td>{{ $pack->version }}</td>
50+
<td><code>{{ $pack->version }}</code></td>
5151
<td><code>{{ $pack->uuid }}</code></td>
5252
<td>@if($pack->selectable)<span class="label label-success"><i class="fa fa-check"></i></span>@else<span class="label label-default"><i class="fa fa-times"></i></span>@endif</td>
5353
<td>@if($pack->visible)<span class="label label-success"><i class="fa fa-check"></i></span>@else<span class="label label-default"><i class="fa fa-times"></i></span>@endif</td>

resources/views/admin/services/packs/byservice.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<table class="table table-bordered table-hover">
3636
<thead>
3737
<tr>
38-
<th>Name</th>
38+
<th>Service Option</th>
3939
<th>Total Packs</th>
4040
</tr>
4141
</thead>

0 commit comments

Comments
 (0)