🩹 [bootsier] Corrige más enlaces dinámicos

This commit is contained in:
Manuel Cillero 2025-12-07 11:37:23 +01:00
parent ea9dbc9443
commit b7c356b2e0
4 changed files with 35 additions and 31 deletions

View file

@ -15,8 +15,8 @@
//! .add_child(Dropdown::new()
//! .with_title(L10n::n("Menu"))
//! .add_item(dropdown::Item::label(L10n::n("Label")))
//! .add_item(dropdown::Item::link_blank(L10n::n("Google"), |_| "https://www.google.es"))
//! .add_item(dropdown::Item::link(L10n::n("Sign out"), |_| "/signout"))
//! .add_item(dropdown::Item::link_blank(L10n::n("Google"), |_| "https://google.es".into()))
//! .add_item(dropdown::Item::link(L10n::n("Sign out"), |_| "/signout".into()))
//! );
//! ```