Skip to content

Commit 17b58b0

Browse files
committed
style: 修复了一些祖传拼写错误
1 parent e18daca commit 17b58b0

4 files changed

Lines changed: 3 additions & 9 deletions

File tree

src/components/common/MessageItem.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,6 @@ const isHidden = computed(() => {
168168
background-color: var(--selection-bg);
169169
}
170170
171-
.message-item.is-hidden {
172-
opacity: 0.5;
173-
}
174-
175171
.message-header {
176172
display: flex;
177173
align-items: center;

src/components/layout/StatusBar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const activeChunkVisibleMsgs = computed(function () {
122122
count++;
123123
}
124124
}
125-
console.log('activeChunkVisibleMsgs:', count);
125+
// console.log('activeChunkVisibleMsgs:', count);
126126
return count;
127127
});
128128

src/components/layout/TopMenuBar.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,7 @@ const hasWorkspaceState = computed(() => {
209209
clipboardStore.copiedMessages.length > 0 ||
210210
filterTool.hasSelection.value ||
211211
historyStore.undoStack.length > 0 ||
212-
historyStore.redoStack.length > 0 ||
213-
!windowStore.currentActiveView.windowId ||
214-
windowStore.currentActiveView.windowId === 'defaultView'
212+
historyStore.redoStack.length > 0
215213
);
216214
});
217215

src/types/log.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function isRoleType(value: unknown): value is RoleType {
77
value === 'ob' ||
88
value === 'bot' ||
99
value === 'npc' ||
10-
value === 'unkown'
10+
value === 'unknown'
1111
);
1212
}
1313

0 commit comments

Comments
 (0)