Skip to content

Commit

Permalink
atlasaction: fixed comment icons size on mobile (#111)
Browse files Browse the repository at this point in the history
fixes #110
  • Loading branch information
dorav authored Jan 7, 2024
1 parent f84bfa1 commit 192481b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions atlasaction/comment.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<table>
<thead>
<tr>
<th></th>
<th>Status</th>
<th>Step</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img src="https://release.ariga.io/images/assets/success.svg"/>
<img width="20px" height="21px" src="https://release.ariga.io/images/assets/success.svg"/>
</td>
<td>
{{- $fileCount := len .Files }}
Expand All @@ -21,7 +21,7 @@
</tr>
<tr>
<td>
<img src="https://release.ariga.io/images/assets/success.svg"/>
<img width="20px" height="21px" src="https://release.ariga.io/images/assets/success.svg"/>
</td>
<td>
ERD and Visual Diff generated
Expand All @@ -34,21 +34,21 @@
{{- $errCount := fileErrors .}}
{{- if gt $errCount 0 }}
<td>
<img src="https://release.ariga.io/images/assets/error.svg"/>
<img width="20px" height="21px" src="https://release.ariga.io/images/assets/error.svg"/>
</td>
<td>
{{ $errCount }} error{{ if gt $errCount 1}}s{{ end }} found
</td>
{{- else if .DiagnosticsCount }}
<td>
<img src="https://release.ariga.io/images/assets/warning.svg"/>
<img width="20px" height="21px" src="https://release.ariga.io/images/assets/warning.svg"/>
</td>
<td>
{{ .DiagnosticsCount }} issue{{ if gt .DiagnosticsCount 1}}s{{ end }} found
</td>
{{- else}}
<td>
<img src="https://release.ariga.io/images/assets/success.svg"/>
<img width="20px" height="21px" src="https://release.ariga.io/images/assets/success.svg"/>
</td>
<td>
No issues found.
Expand Down

0 comments on commit 192481b

Please sign in to comment.