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

{{ error }} - - +

@@ -117,10 +118,6 @@ 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 9d5521b44..f5e750aff 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -9,20 +9,22 @@ @dragover.prevent="fileDrag" >
- - - + + +

{{ error }} - - + diff --git a/src/services/entity_normalizer/entity_normalizer.service.js b/src/services/entity_normalizer/entity_normalizer.service.js index 3f1b3e253..bcc27e8cb 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 45fbffec2..697496c91 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, type } = prefs + const { color = '#FFFFFF', 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 3b066b7c5..a2ea39366 100644 --- a/src/stores/interface.js +++ b/src/stores/interface.js @@ -91,7 +91,8 @@ export const useInterfaceStore = defineStore('interface', { }, setPageTitle(option = '') { try { - document.title = `${option} ${useInstanceStore().name}` + console.log('TITLE', option, useInstanceStore().instanceIdentity.name) + document.title = `${option} ${useInstanceStore().instanceIdentity.name}` } catch (error) { console.error(`${error}`) }