Skip to content

Commit 03fe9eb

Browse files
committed
Fix issue that ignores manually modified changes
1 parent 2c4dfb0 commit 03fe9eb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/resources/views/documentarian.blade.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
#{{$group}}
1111
@endif
1212
@foreach($routes as $parsedRoute)
13-
{!! $parsedRoute['output'] !!}
13+
@if($writeCompareFile === true)
14+
{!! $parsedRoute['output']!!}
15+
@else
16+
{!! isset($parsedRoute['modified_output']) ? $parsedRoute['modified_output'] : $parsedRoute['output']!!}
17+
@endif
1418
@endforeach
1519
@endforeach

0 commit comments

Comments
 (0)