Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
clockworkgr committed Oct 2, 2024
1 parent bb76c59 commit 7fa1d14
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/views/ProposalView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ watch(proposal, async (newProp, _oldProp) => {

<template>
<div>
<ProposalWrapper v-if="proposal?.proposal[0].id && height !== null"
:proposal-id="parseInt(route.params.id as string)" :height="height" />
<ProposalWrapper
v-if="proposal?.proposal[0].id && height !== null"
:proposal-id="parseInt(route.params.id as string)"
:height="height"
/>
<div v-else class="text-400 text-grey-50 text-center mt-12 font-medium">
{{ $t("proposalview.labels.unavailable") }}
</div>
Expand Down

0 comments on commit 7fa1d14

Please sign in to comment.