diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/config.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/config.rs b/src/app/config.rs index 537e291..e0a4d90 100644 --- a/src/app/config.rs +++ b/src/app/config.rs @@ -83,14 +83,14 @@ impl Display for Salary { impl Salary { pub fn html(&self) -> Markup { if self.stock.is_none() { - return html! { (self) }; + return html! { (maud::display(self)) }; } let stock = self.stock.as_ref().unwrap(); html! { details { summary { - (self) + (maud::display(self)) } p{ |
