Skip to content

Commit

Permalink
all: fix html warnings
Browse files Browse the repository at this point in the history
Wrong closing tags etc.
  • Loading branch information
tarasmadan committed Feb 6, 2025
1 parent 1e1faf2 commit c3c1169
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dashboard/app/templates/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<td class="stat">{{.Items}}</td>
<td class="stat">{{.Bytes}}</td>
<td class="stat">{{.Oldest}}</td>
<td><a href="?action=memcache_flush">flush</input></td>
<td><a href="?action=memcache_flush">flush</a></td>
</tr>
</table>
{{end}}
Expand Down
2 changes: 1 addition & 1 deletion dashboard/app/templates/manager.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<span class="input-group">
<textarea name="send-repro"></textarea>
</span>
<input type="submit" name="show-crashers" value="Submit"></div>
<input type="submit" name="show-crashers" value="Submit">
</form>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions dashboard/app/templates/templates.html
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,9 @@ <h1><a href="/{{$.Namespace}}">syzbot</a></h1>
{{optlink $job.CrashLogLink "log"}}
{{end}}
{{ if $job.InvalidatedBy }}
</br>marked invalid by {{$job.InvalidatedBy}}
<br>marked invalid by {{$job.InvalidatedBy}}
{{end}}
{{if and $.PerBug (or .InvalidateJobLink .RestartJobLink)}}<br/>{{optlink .RestartJobLink "🔄 retry this bisection"}}&nbsp;&nbsp;{{optlink .InvalidateJobLink "❌ mark as invalid"}}{{end}}
{{if and $.PerBug (or .InvalidateJobLink .RestartJobLink)}}<br>{{optlink .RestartJobLink "🔄 retry this bisection"}}&nbsp;&nbsp;{{optlink .InvalidateJobLink "❌ mark as invalid"}}{{end}}
</td>
</tr>
{{end}}
Expand Down
4 changes: 2 additions & 2 deletions pkg/manager/html/common.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ <h1><a href="/">syzkaller</a></h1>
<input type="hidden" name="url" value="{{.CurrentURL}}" />
<button type="submit" name="toggle" value="expert" class="action_button{{if .ExpertMode}}_selected{{end}}" title="Toggle expert mode">
🧠
</input>
</button>
<button type="submit" name="toggle" value="pause" class="action_button{{if .Paused}}_selected{{end}}" title="Pause/unpause fuzzing">
{{if .Paused}}▶️{{else}}⏸️{{end}}
</input>
</button>
</form>
</td>
<td class="search">
Expand Down
2 changes: 1 addition & 1 deletion pkg/manager/html/crash.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<td><a href="/file?name={{$c.Log}}">log</a></td>
<td>
{{if $c.Report}}
<a href="/file?name={{$c.Report}}">report</a></td>
<a href="/file?name={{$c.Report}}">report</a>
{{end}}
</td>
<td class="time {{if not $c.Active}}inactive{{end}}">{{formatTime $c.Time}}</td>
Expand Down

0 comments on commit c3c1169

Please sign in to comment.