Remove disable attribute from send_textarea. It never worked.
This commit is contained in:
parent
292ecf580e
commit
ef5499c8dc
|
@ -4257,7 +4257,6 @@ function unblockGeneration(type) {
|
|||
setGenerationProgress(0);
|
||||
flushEphemeralStoppingStrings();
|
||||
flushWIDepthInjections();
|
||||
$('#send_textarea').removeAttr('disabled');
|
||||
}
|
||||
|
||||
export function getNextMessageId(type) {
|
||||
|
@ -5263,7 +5262,6 @@ export function activateSendButtons() {
|
|||
is_send_press = false;
|
||||
$('#send_but').removeClass('displayNone');
|
||||
$('#mes_continue').removeClass('displayNone');
|
||||
$('#send_textarea').attr('disabled', String(false));
|
||||
$('.mes_buttons:last').show();
|
||||
hideStopButton();
|
||||
}
|
||||
|
|
|
@ -788,7 +788,6 @@ async function generateGroupWrapper(by_auto_mode, type = null, params = {}) {
|
|||
}
|
||||
}
|
||||
else if (type === 'impersonate') {
|
||||
$('#send_textarea').attr('disabled', true);
|
||||
activatedMembers = activateImpersonate(group.members);
|
||||
}
|
||||
else if (activationStrategy === group_activation_strategy.NATURAL) {
|
||||
|
@ -840,7 +839,6 @@ async function generateGroupWrapper(by_auto_mode, type = null, params = {}) {
|
|||
typingIndicator.hide();
|
||||
|
||||
is_group_generating = false;
|
||||
$('#send_textarea').attr('disabled', false);
|
||||
setSendButtonState(false);
|
||||
setCharacterId(undefined);
|
||||
setCharacterName('');
|
||||
|
|
Loading…
Reference in New Issue