Skip to content

Commit 9219179

Browse files
committed
Fix rendering of auth tag
1 parent 4a0131e commit 9219179

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

resources/views/partials/route.blade.php

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
<!-- START_{{$route['id']}} -->
22
@if($route['title'] != '')## {{ $route['title']}}
33
@else## {{$route['uri']}}@endif
4-
@if($route['authenticated'])<small style="
5-
padding: 1px 9px 2px;
6-
font-weight: bold;
7-
white-space: nowrap;
8-
color: #ffffff;
9-
-webkit-border-radius: 9px;
10-
-moz-border-radius: 9px;
11-
border-radius: 9px;
12-
background-color: #3a87ad;">Requires authentication</small>@endif
4+
@if($route['authenticated'])
5+
6+
<br><small style="padding: 1px 9px 2px;font-weight: bold;white-space: nowrap;color: #ffffff;-webkit-border-radius: 9px;-moz-border-radius: 9px;border-radius: 9px;background-color: #3a87ad;">Requires authentication</small>@endif
137
@if($route['description'])
148

159
{!! $route['description'] !!}

0 commit comments

Comments
 (0)