@@ -27,7 +30,7 @@ SPDX-License-Identifier: AGPL-3.0-only
diff --git a/packages/frontend/src/ui/deck/notifications-column.vue b/packages/frontend/src/ui/deck/notifications-column.vue
index 0fdd069a98..b55eeba920 100644
--- a/packages/frontend/src/ui/deck/notifications-column.vue
+++ b/packages/frontend/src/ui/deck/notifications-column.vue
@@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ column.name }}
-
+
@@ -25,13 +25,13 @@ const props = defineProps<{
}>();
function func() {
- os.popup(defineAsyncComponent(() => import('@/components/MkNotificationSettingWindow.vue')), {
- includingTypes: props.column.includingTypes,
+ os.popup(defineAsyncComponent(() => import('@/components/MkNotificationSelectWindow.vue')), {
+ excludeTypes: props.column.excludeTypes,
}, {
done: async (res) => {
- const { includingTypes } = res;
+ const { excludeTypes } = res;
updateColumn(props.column.id, {
- includingTypes: includingTypes,
+ excludeTypes: excludeTypes,
});
},
}, 'closed');
diff --git a/packages/frontend/src/ui/deck/tl-column.vue b/packages/frontend/src/ui/deck/tl-column.vue
index 678af16fd2..7c93928333 100644
--- a/packages/frontend/src/ui/deck/tl-column.vue
+++ b/packages/frontend/src/ui/deck/tl-column.vue
@@ -8,26 +8,33 @@ SPDX-License-Identifier: AGPL-3.0-only
-
-
-
+
{{ column.name }}
-
+
{{ i18n.ts._disabledTimeline.title }}
{{ i18n.ts._disabledTimeline.description }}
-
+
diff --git a/packages/frontend/src/ui/friendly.vue b/packages/frontend/src/ui/friendly.vue
index d565783c6d..07f328040b 100644
--- a/packages/frontend/src/ui/friendly.vue
+++ b/packages/frontend/src/ui/friendly.vue
@@ -26,20 +26,20 @@ SPDX-License-Identifier: AGPL-3.0-only
-
+
-
+
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
{
- if (longTouchNavHome === true) {
- openAccountMenu_({
- withExtraOperationFriendly: true,
- }, ev);
- }
- }, 500);
+ if (defaultStore.state.enableLongPressOpenAccountMenu) {
+ longTouchNavHome = true;
+ setTimeout(() => {
+ if (longTouchNavHome === true) {
+ openAccountMenu_({
+ withExtraOperationFriendly: true,
+ }, ev);
+ }
+ }, 500);
+ }
}
function closeAccountMenu() {
diff --git a/packages/frontend/src/ui/friendly/navbar-for-mobile.vue b/packages/frontend/src/ui/friendly/navbar-for-mobile.vue
index e1ee74f6dd..983aa751af 100644
--- a/packages/frontend/src/ui/friendly/navbar-for-mobile.vue
+++ b/packages/frontend/src/ui/friendly/navbar-for-mobile.vue
@@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-
@@ -18,7 +18,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-
+
{{ navbarItemDef[item].title }}
@@ -28,7 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ i18n.ts.controlPanel }}
-
+
{{ i18n.ts.more }}
@@ -38,14 +38,14 @@ SPDX-License-Identifier: AGPL-3.0-only