]> git.proxmox.com Git - ui/proxmox-yew-widget-toolkit.git/commit
widget: return `Row` from (error_)message instead of Html
authorDominik Csapak <d.csapak@proxmox.com>
Tue, 18 Jun 2024 08:46:56 +0000 (10:46 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 18 Jun 2024 09:42:41 +0000 (11:42 +0200)
commitb86dc23994182052359dbc1957521a467e2a1c59
tree19b2e8bbed92ed5efc84fa37fcdd3774e743a0ea
parent6d8a766c779e5d59074fe5fb3b0e98848e681680
widget: return `Row` from (error_)message instead of Html

with `Row` we are much more flexible, e.g. we can use all
builder style functions for classes/padding/margin/etc. and the only
downside is that sometimes we have to do an `.into()` to convert to Html

And even that is not always necessary since arguments of functions often
take something like: `Into<Html>` which `Row` implements.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
src/state/loader.rs
src/widget/form/selector.rs
src/widget/message_box.rs
src/widget/mod.rs