File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ function setChatList() {
53
53
function disableChatListClick ( ) {
54
54
var chatList = gradioApp ( ) . querySelector ( 'fieldset#history-select-dropdown' ) ;
55
55
if ( chatList . querySelector ( 'label' ) . style . pointerEvents !== 'none' && ! isChatListRecentlyEnabled ) {
56
- console . log ( "disableChatListClick" ) ;
57
56
chatList . querySelectorAll ( 'label' ) . forEach ( label => {
58
57
label . style . transition = 'opacity 0.1s ease' ;
59
58
label . style . pointerEvents = 'none' ;
@@ -64,7 +63,6 @@ function disableChatListClick() {
64
63
function enableChatListClick ( ) {
65
64
var chatList = gradioApp ( ) . querySelector ( 'fieldset#history-select-dropdown' ) ;
66
65
if ( chatList . querySelector ( 'label' ) . style . pointerEvents !== 'auto' ) {
67
- console . log ( "enableChatListClick" ) ;
68
66
chatList . querySelectorAll ( 'label' ) . forEach ( label => {
69
67
label . style . transition = 'opacity 0.2s ease' ;
70
68
label . style . pointerEvents = 'auto' ;
You can’t perform that action at this time.
0 commit comments