Skip to content

Commit

Permalink
Remove identifier row from dashboard table
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Jul 17, 2024
1 parent d54748d commit 8c86f54
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/realtime-compiler/resources/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
<div class="table-responsive">
<table class="table table-bordered">
<tr>
@foreach(['Page Type', 'Route Key', 'Source File', 'Output File', 'Identifier'] as $header)
@foreach(['Page Type', 'Route Key', 'Source File', 'Output File'] as $header)
<th>{{ $header }}</th>
@endforeach
<th class="text-end">Actions</th>
Expand All @@ -254,9 +254,6 @@
<td>
{{ $route->getOutputPath() }}
</td>
<td>
{{ $route->getPageIdentifier() }}
</td>
<td class="text-end">
<div class="d-flex justify-content-end">
@if($dashboard->isInteractive())
Expand Down

0 comments on commit 8c86f54

Please sign in to comment.