Skip to content

Commit 3386964

Browse files
committed
chore: remove debug logs
忘记删了qwq
1 parent fb97fd6 commit 3386964

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

web_assets/javascript/chat-list.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ function setChatList() {
5353
function disableChatListClick() {
5454
var chatList = gradioApp().querySelector('fieldset#history-select-dropdown');
5555
if (chatList.querySelector('label').style.pointerEvents !== 'none' && !isChatListRecentlyEnabled) {
56-
console.log("disableChatListClick");
5756
chatList.querySelectorAll('label').forEach(label => {
5857
label.style.transition = 'opacity 0.1s ease';
5958
label.style.pointerEvents = 'none';
@@ -64,7 +63,6 @@ function disableChatListClick() {
6463
function enableChatListClick() {
6564
var chatList = gradioApp().querySelector('fieldset#history-select-dropdown');
6665
if (chatList.querySelector('label').style.pointerEvents !== 'auto') {
67-
console.log("enableChatListClick");
6866
chatList.querySelectorAll('label').forEach(label => {
6967
label.style.transition = 'opacity 0.2s ease';
7068
label.style.pointerEvents = 'auto';

0 commit comments

Comments
 (0)