mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix styles conflict with timelines
This commit is contained in:
@ -107,11 +107,11 @@ async function sendWelcomePanel() {
|
||||
const hiddenChats = fragment.querySelectorAll('.recentChat.hidden');
|
||||
fragment.querySelectorAll('button.showMoreChats').forEach((button) => {
|
||||
button.addEventListener('click', () => {
|
||||
const rotate = button.classList.contains('rotate');
|
||||
const rotate = button.classList.contains('rotated');
|
||||
hiddenChats.forEach((chatItem) => {
|
||||
chatItem.classList.toggle('hidden', rotate);
|
||||
});
|
||||
button.classList.toggle('rotate', !rotate);
|
||||
button.classList.toggle('rotated', !rotate);
|
||||
});
|
||||
});
|
||||
fragment.querySelectorAll('button.openTemporaryChat').forEach((button) => {
|
||||
|
Reference in New Issue
Block a user