Skip to content

Commit

Permalink
Cleanup ControlRow, text-justify and pre-formatted are incompatible o…
Browse files Browse the repository at this point in the history
…ptions, remove text-justify
  • Loading branch information
Robert Clark committed Jan 14, 2021
1 parent 85250b5 commit 6e6346c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<!-- HTML is sanitized with sanitize-html -->
<!-- eslint-disable vue/no-v-html -->
<div
class="pa-2 mono text-justify pre-formatted"
class="pa-2 mono pre-formatted"
v-html="sanitize_html(result.code_desc.trim())"
/>
<!-- eslint-enable vue/no-v-html -->
Expand All @@ -34,7 +34,7 @@
<v-divider />
<!-- eslint-disable vue/no-v-html -->
<div
class="pa-2 mono text-justify pre-formatted"
class="pa-2 mono pre-formatted"
v-html="sanitize_html(result.message.trim())"
/>
<!-- eslint-enable vue/no-v-html -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,7 @@
<v-col cols="12" :class="detail.class">
<h3>{{ detail.name }}:</h3>
<!-- eslint-disable vue/no-v-html -->
<h4
class="mono preserve-whitespace"
v-html="sanitize_html(detail.value)"
/>
<h4 class="mono" v-html="sanitize_html(detail.value)" />
<!-- eslint-enable vue/no-v-html -->
</v-col>
<v-divider />
Expand Down

0 comments on commit 6e6346c

Please sign in to comment.