fix: case for emotions

This commit is contained in:
Evan Carroll 2026-01-18 02:49:31 -06:00
parent 8201092703
commit d1cbb3ba34
3 changed files with 20 additions and 6 deletions

View file

@ -5,7 +5,7 @@ use leptos::prelude::*;
use chattyness_db::models::EmotionAvailability;
use chattyness_db::ws_messages::ClientMessage;
use super::emotion_picker::{EmoteListPopup, EMOTIONS};
use super::emotion_picker::{EmoteListPopup, LabelStyle, EMOTIONS};
use super::ws_client::WsSenderStorage;
/// Command mode state for the chat input.
@ -423,6 +423,7 @@ pub fn ChatInput(
on_close=on_popup_close
emotion_filter=filter_signal
selected_idx=Signal::derive(move || selected_index.get())
label=LabelStyle::Command
/>
</Show>