fix: do not accidentally mount things before meta tags in the <head> when updating the DOM v2

This commit is contained in:
Kajetan Welc 2024-06-25 20:14:55 +02:00 committed by Greg Johnston
parent 095dc78893
commit 83e0438527
1 changed files with 1 additions and 1 deletions

View File

@ -297,6 +297,6 @@ impl Mountable<Dom> for TitleViewState {
} }
fn insert_before_this(&self, _child: &mut dyn Mountable<Dom>) -> bool { fn insert_before_this(&self, _child: &mut dyn Mountable<Dom>) -> bool {
true false
} }
} }