Fix lint errors and warnings

This commit is contained in:
Sean King 2022-08-01 18:45:52 -06:00
parent 081aa0fd05
commit 232cc72df8
No known key found for this signature in database
GPG Key ID: 510C52BACD6E7257
5 changed files with 14 additions and 16 deletions

View File

@ -11,10 +11,10 @@
<PostStatusForm
class="panel-body"
v-bind="params"
@posted="closeModal"
:disablePolls="true"
:disableVisibilitySelector="true"
:post-handler="doEditStatus"
:disable-polls="true"
:disable-visibility-selector="true"
@posted="closeModal"
/>
</div>
</Modal>

View File

@ -340,13 +340,11 @@
keypath="time.in_past"
tag="span"
>
<template>
<Timeago
:time="status.edited_at"
:auto-update="60"
:long-format="true"
/>
</template>
<Timeago
:time="status.edited_at"
:auto-update="60"
:long-format="true"
/>
</i18n-t>
</template>
</i18n-t>

View File

@ -17,9 +17,9 @@
v-for="status in history"
:key="status.id"
:statusoid="status"
:isPreview="true"
:is-preview="true"
class="conversation-status status-fadein panel-body"
/>
/>
</div>
</div>
</div>

View File

@ -417,7 +417,7 @@ const fetchStatus = ({ id, credentials }) => {
}
const fetchStatusSource = ({ id, credentials }) => {
let url = MASTODON_STATUS_SOURCE_URL(id)
const url = MASTODON_STATUS_SOURCE_URL(id)
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => {
if (data.ok) {
@ -430,7 +430,7 @@ const fetchStatusSource = ({ id, credentials }) => {
}
const fetchStatusHistory = ({ status, credentials }) => {
let url = MASTODON_STATUS_HISTORY_URL(status.id)
const url = MASTODON_STATUS_HISTORY_URL(status.id)
return promisedRequest({ url, credentials })
.then((data) => {
data.reverse()
@ -767,7 +767,7 @@ const editStatus = ({
})
}
let putHeaders = authHeaders(credentials)
const putHeaders = authHeaders(credentials)
return fetch(MASTODON_STATUS_URL(id), {
body: form,

View File

@ -378,7 +378,7 @@ export const parseStatus = (data) => {
output.favoritedBy = []
output.rebloggedBy = []
if (data.hasOwnProperty('originalStatus')) {
if (Object.prototype.hasOwnProperty.call(data, 'originalStatus')) {
Object.assign(output, data.originalStatus)
}