File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments