Skip to content

Commit a613152

Browse files
Merge pull request #87 from cdmathukiya/patch-1
Remove unwanted tr after search result
2 parents cbf60bb + d886d23 commit a613152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ class="my-prism-editor"
133133
<table class="table-fixed text-sm mt-5" style="width: max-content">
134134
<tbody>
135135
@foreach ($docs as $index => $doc)
136-
<tr>
136+
<tr v-if="!docs[{{$index}}]['isHidden']">
137137
<td>
138-
<a href="#{{$doc['methods'][0] .'-'. $doc['uri']}}" @click="highlightSidebar({{$index}})" v-if="!docs[{{$index}}]['isHidden']">
138+
<a href="#{{$doc['methods'][0] .'-'. $doc['uri']}}" @click="highlightSidebar({{$index}})" >
139139
<span class="
140140
font-medium
141141
inline-flex

0 commit comments

Comments
 (0)