diff --git a/src/components/password_reset/password_reset.vue b/src/components/password_reset/password_reset.vue index ea86fb517..5392f487b 100644 --- a/src/components/password_reset/password_reset.vue +++ b/src/components/password_reset/password_reset.vue @@ -61,16 +61,15 @@

{{ error }} - +

@@ -118,6 +117,10 @@ margin: 0.3em 0 1em; } + .notice-dismissible { + padding-right: 2rem; + } + .dismiss { cursor: pointer; } diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index f5e750aff..9d5521b44 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -9,22 +9,20 @@ @dragover.prevent="fileDrag" >
-
- + - -
+ {{ $t('post_status.account_not_locked_warning_link') }} + +

{{ error }} - +

diff --git a/src/services/entity_normalizer/entity_normalizer.service.js b/src/services/entity_normalizer/entity_normalizer.service.js index bcc27e8cb..3f1b3e253 100644 --- a/src/services/entity_normalizer/entity_normalizer.service.js +++ b/src/services/entity_normalizer/entity_normalizer.service.js @@ -372,8 +372,8 @@ export const parseStatus = (data) => { const quoteData = quoteRaw ? parseStatus(quoteRaw) : undefined output.quote = quoteData output.quote_id = - data.quote?.id ?? data.quote_id ?? quoteData?.id ?? pleroma?.quote_id - output.quote_url = data.quote?.url ?? quoteData?.url ?? pleroma?.quote_url + data.quote?.id ?? data.quote_id ?? quoteData?.id ?? pleroma.quote_id + output.quote_url = data.quote?.url ?? quoteData?.url ?? pleroma.quote_url output.in_reply_to_status_id = data.in_reply_to_id output.in_reply_to_user_id = data.in_reply_to_account_id diff --git a/src/services/user_highlighter/user_highlighter.js b/src/services/user_highlighter/user_highlighter.js index 697496c91..45fbffec2 100644 --- a/src/services/user_highlighter/user_highlighter.js +++ b/src/services/user_highlighter/user_highlighter.js @@ -2,7 +2,7 @@ import { hex2rgb } from '../color_convert/color_convert.js' const highlightStyle = (prefs) => { if (prefs === undefined) return - const { color = '#FFFFFF', type } = prefs + const { color, type } = prefs if (typeof color !== 'string') return const rgb = hex2rgb(color) if (rgb == null) return diff --git a/src/stores/interface.js b/src/stores/interface.js index a2ea39366..3b066b7c5 100644 --- a/src/stores/interface.js +++ b/src/stores/interface.js @@ -91,8 +91,7 @@ export const useInterfaceStore = defineStore('interface', { }, setPageTitle(option = '') { try { - console.log('TITLE', option, useInstanceStore().instanceIdentity.name) - document.title = `${option} ${useInstanceStore().instanceIdentity.name}` + document.title = `${option} ${useInstanceStore().name}` } catch (error) { console.error(`${error}`) }