Skip to content
Snippets Groups Projects
Commit 1770b56c authored by Hermann's avatar Hermann
Browse files

remove avatar shadow from menu points

parent 14195f7b
No related branches found
No related tags found
No related merge requests found
......@@ -47,14 +47,8 @@ styler.add('layout', layoutStyle);
class Menupoint {
view({ attrs: { title, href, icon = null } }) {
return m(ListTile, {
url: {
href,
oncreate: m.route.link,
},
front: icon ? m(Icon, {
avatar: true,
svg: m.trust(icon),
}) : '',
url: { href, oncreate: m.route.link },
front: icon ? m(Icon, { svg: m.trust(icon) }) : '',
title,
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment