Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
annemerete committed Aug 29, 2023
1 parent add3c21 commit 5fc0326
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/components/KpiDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
{{ $t('kpi.newValue') }}
</pkt-button>
</div>
<HTML-output v-if="kpi.description" class="pkt-txt-14-light" :html="kpi.description" />
<HTML-output
v-if="kpi.description"
class="pkt-txt-14-light"
:html="kpi.description"
/>
</header>

<widget-kpi-progress-graph :kpi="kpi" :progress="progress" :goals="goals" />
Expand Down
5 changes: 4 additions & 1 deletion src/views/KeyResultHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
/>
</div>
</div>
<HTML-output v-if="activeKeyResult.description" :html="activeKeyResult.description" />
<HTML-output
v-if="activeKeyResult.description"
:html="activeKeyResult.description"
/>
</header>

<archived-restore
Expand Down
5 changes: 4 additions & 1 deletion src/views/ObjectiveHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
</div>
</div>
<div class="objective__description">
<HTML-output v-if="activeObjective.description" :html="activeObjective.description" />
<HTML-output
v-if="activeObjective.description"
:html="activeObjective.description"
/>
<div
v-if="hasEditRights && !activeObjective.archived"
data-mode="dark"
Expand Down

0 comments on commit 5fc0326

Please sign in to comment.