@@ -140,7 +146,9 @@ const todoPopoverOpen = ref(false)
const placeholder = '问点什么?使用 @ 可以提及哦~'
const totalTodoCount = computed(() => props.todos.length)
-const completedTodoCount = computed(() => props.todos.filter((todo) => todo?.status === 'completed').length)
+const completedTodoCount = computed(
+ () => props.todos.filter((todo) => todo?.status === 'completed').length
+)
const showTodoEntry = computed(() => props.hasActiveThread && totalTodoCount.value > 0)
const todoProgress = computed(() => {
if (!totalTodoCount.value) return 0
@@ -284,8 +292,7 @@ const getTodoStatusLabel = (status) => {
.todo-popover-card {
width: min(300px, calc(100vw - 32px));
padding: 14px;
- background:
- linear-gradient(180deg, var(--gray-50) 0%, var(--gray-50) 100%);
+ background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-50) 100%);
}
.todo-popover-header {
diff --git a/web/src/components/SettingsModal.vue b/web/src/components/SettingsModal.vue
index 8f12489f..4f0c1070 100644
--- a/web/src/components/SettingsModal.vue
+++ b/web/src/components/SettingsModal.vue
@@ -72,7 +72,11 @@
支持项目
-