hiding sparks download message when using the chatgpt web interface. fixes #245
This commit is contained in:
parent
bfce05e4f7
commit
fd034bce62
1 changed files with 1 additions and 1 deletions
|
|
@ -272,7 +272,7 @@ async function disable_GetCalendarEvent(){
|
|||
get_calendar_event_tr_elements.forEach(get_calendar_event_tr => {
|
||||
get_calendar_event_tr.style.display = get_calendar_event.disabled ? 'none' : 'table-row';
|
||||
});
|
||||
no_sparks_tr.style.display = is_spark_present ? 'none' : 'table-row';
|
||||
no_sparks_tr.style.display = (is_spark_present || (conntype_select.value === "chatgpt_web")) ? 'none' : 'table-row';
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', async () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue