mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
amount gen slider hidden for poe
This commit is contained in:
@ -2177,6 +2177,12 @@ function changeMainAPI() {
|
||||
} else {
|
||||
$("#common-gen-settings-block").css("display", "block");
|
||||
}
|
||||
// Hide amount gen for poe
|
||||
if (selectedVal == "poe") {
|
||||
$("#amount_gen_block").css("display", "none");
|
||||
} else {
|
||||
$("#amount_gen_block").css("display", "block");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -4491,7 +4497,7 @@ $(document).ready(function () {
|
||||
});
|
||||
$(document).on('click', '.export_format', async function () {
|
||||
const format = $(this).data('format');
|
||||
|
||||
|
||||
if (!format) {
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user