Save drafts permanently in local storage

This commit is contained in:
tusooa 2023-03-10 21:37:03 -05:00
commit b6f1178ea3
No known key found for this signature in database
GPG key ID: 42AEC43D48433C51
7 changed files with 54 additions and 9 deletions

View file

@ -31,12 +31,12 @@
class="faint-link"
:to="{ name: 'conversation', params: { id: draft.refId } }"
>
{{ refStatus.external_url }}
{{ refStatus ? refStatus.external_url : $t('drafts.unavailable') }}
</router-link>
</template>
</i18n-t>
<StatusContent
v-if="draft.refId"
v-if="draft.refId && refStatus"
class="status-content"
:status="refStatus"
:compact="true"