Skip to content

Commit

Permalink
fixes #2809 UI bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jkppr committed Jul 3, 2023
1 parent b824136 commit cc4ee45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ limitations under the License.
<v-chip
small
class="mr-1"
:close="hover ? true : false"
:color="tagColor(tag).color"
:text-color="tagColor(tag).textColor"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ limitations under the License.
</td>
<td style="border: none">
<span>
{{ verboseAnalyzerOutput.result_summary }}
{{ verboseAnalyzerOutput.result_summary ? verboseAnalyzerOutput.result_summary : 'loading...' }}
</span>
</td>
</tr>
Expand All @@ -135,7 +135,7 @@ limitations under the License.
</td>
<td style="border: none">
<span>
{{ verboseAnalyzerOutput.result_priority }}
{{ verboseAnalyzerOutput.result_priority ? verboseAnalyzerOutput.result_priority : 'loading...' }}
</span>
</td>
</tr>
Expand Down Expand Up @@ -170,7 +170,7 @@ limitations under the License.
</td>
<td style="border: none">
<span>
{{ verboseAnalyzerOutput.result_status }}
{{ verboseAnalyzerOutput.result_status ? verboseAnalyzerOutput.result_status : 'loading...' }}
</span>
</td>
</tr>
Expand Down Expand Up @@ -429,6 +429,6 @@ export default {
background-color: #303030;
}
.light-bg {
background-color: #F6F6F6;
background-color: #f6f6f6;
}
</style>

0 comments on commit cc4ee45

Please sign in to comment.