Skip to content

Commit 07fee46

Browse files
committed
fix class
1 parent 9403c34 commit 07fee46

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

templates/repo/actions/list.tmpl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
{{range .workflows}}
1313
<a class="item{{if eq .Entry.Name $.CurWorkflow}} active{{end}}" href="?workflow={{.Entry.Name}}&actor={{$.CurActor}}&status={{$.CurStatus}}">{{.Entry.Name}}
1414
{{if .ErrMsg}}
15-
<span data-tooltip-content="{{.ErrMsg}}">
16-
<span class="tw-align-middle">
17-
{{svg "octicon-alert" 16 "text red"}}
18-
</span>
15+
<span class="flex-text-inline" data-tooltip-content="{{.ErrMsg}}">
16+
{{svg "octicon-alert" 16 "text red"}}
1917
</span>
2018
{{end}}
2119

templates/repo/actions/runs_list.tmpl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@
2626
{{- end -}}
2727
{{$errMsg := index $.RunErrors $run.ID}}
2828
{{if $errMsg}}
29-
<span data-tooltip-content="{{$errMsg}}">
30-
<div class="flex-text-block">
31-
{{svg "octicon-alert" 16 "text red"}}
32-
</div>
29+
<span class="flex-text-block" data-tooltip-content="{{$errMsg}}">
30+
{{svg "octicon-alert" 16 "text red"}}
3331
</span>
3432
{{end}}
3533
</div>

0 commit comments

Comments
 (0)