mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix app onboarding on Safari
This commit is contained in:
@ -6175,7 +6175,7 @@ async function doOnboarding(avatarId) {
|
|||||||
template.find('input[name="enable_simple_mode"]').on('input', function () {
|
template.find('input[name="enable_simple_mode"]').on('input', function () {
|
||||||
simpleUiMode = $(this).is(':checked');
|
simpleUiMode = $(this).is(':checked');
|
||||||
});
|
});
|
||||||
let userName = await callGenericPopup(template, POPUP_TYPE.INPUT, currentUser?.name || name1, { rows: 2 });
|
let userName = await callGenericPopup(template, POPUP_TYPE.INPUT, currentUser?.name || name1, { rows: 2, wide: true, large: true });
|
||||||
|
|
||||||
if (userName) {
|
if (userName) {
|
||||||
userName = userName.replace('\n', ' ');
|
userName = userName.replace('\n', ' ');
|
||||||
|
Reference in New Issue
Block a user