feat: make ContextDrawer model accessible to pages

This commit is contained in:
Michael Aaron Murphy 2025-04-21 18:14:58 +02:00 committed by Michael Murphy
parent bb41b4985e
commit 45f1183d92
24 changed files with 210 additions and 223 deletions

View file

@ -52,7 +52,7 @@ impl<Message: 'static> Default for Section<Message> {
}
}
impl<Message: 'static> Section<Message> {
impl<Message: Clone + 'static> Section<Message> {
#[must_use]
#[inline]
pub fn search_matches(&self, rule: &Regex) -> bool {