diff --git a/app/components/list/ListEntry.vue b/app/components/list/ListEntry.vue index 062ce8c8..1096c78e 100644 --- a/app/components/list/ListEntry.vue +++ b/app/components/list/ListEntry.vue @@ -71,7 +71,6 @@ async function removeList() { if (confirmDelete.choice === 'confirm') { await nextTick() try { - // @ts-expect-error this method should not take any argument, but it expects 1-2 arguments since masto.js v7.7.0 (potential issue) await client.v1.lists.$select(list.value.id).remove() emit('listRemoved', list.value.id) } diff --git a/app/components/magickeys/MagickeysKeyboardShortcuts.vue b/app/components/magickeys/MagickeysKeyboardShortcuts.vue index e5b1f4c9..de620213 100644 --- a/app/components/magickeys/MagickeysKeyboardShortcuts.vue +++ b/app/components/magickeys/MagickeysKeyboardShortcuts.vue @@ -117,6 +117,10 @@ const shortcutItemGroups = computed(() => [ description: t('magic_keys.groups.actions.boost'), shortcut: { keys: ['b'], isSequence: false }, }, + { + description: t('magic_keys.groups.actions.quote'), + shortcut: { keys: ['q'], isSequence: false }, + }, ], }, { diff --git a/app/components/modal/ModalContainer.vue b/app/components/modal/ModalContainer.vue index a8fb7896..55f3736a 100644 --- a/app/components/modal/ModalContainer.vue +++ b/app/components/modal/ModalContainer.vue @@ -6,11 +6,11 @@ import { isConfirmDialogOpen, isEditHistoryDialogOpen, isErrorDialogOpen, - isFavouritedBoostedByDialogOpen, isKeyboardShortcutsDialogOpen, isMediaPreviewOpen, isPreviewHelpOpen, isPublishDialogOpen, + isReactedByDialogOpen, isReportDialogOpen, isSigninDialogOpen, } from '~/composables/dialog' @@ -48,8 +48,8 @@ function handleConfirmChoice(choice: ConfirmDialogChoice) { isConfirmDialogOpen.value = false } -function handleFavouritedBoostedByClose() { - isFavouritedBoostedByDialogOpen.value = false +function handleReactedByClose() { + isReactedByDialogOpen.value = false } @@ -95,11 +95,11 @@ function handleFavouritedBoostedByClose() { - + diff --git a/app/components/publish/PublishQuoteApprovalPicker.vue b/app/components/publish/PublishQuoteApprovalPicker.vue new file mode 100644 index 00000000..143dd37f --- /dev/null +++ b/app/components/publish/PublishQuoteApprovalPicker.vue @@ -0,0 +1,42 @@ + + + diff --git a/app/components/publish/PublishThreadTools.vue b/app/components/publish/PublishThreadTools.vue index 1850392e..65b67ae3 100644 --- a/app/components/publish/PublishThreadTools.vue +++ b/app/components/publish/PublishThreadTools.vue @@ -1,6 +1,6 @@ diff --git a/app/components/publish/PublishWidget.vue b/app/components/publish/PublishWidget.vue index a9ea5557..79549410 100644 --- a/app/components/publish/PublishWidget.vue +++ b/app/components/publish/PublishWidget.vue @@ -1,5 +1,5 @@ @@ -194,10 +194,10 @@ function showFavoritedAndBoostedBy() { () const { translation } = await useTranslation(status, getLanguageCode()) @@ -38,6 +40,7 @@ const vnode = computed(() => {
+