From 3de4523048fefd37a6ea0a531979ea7b6a7b23ca Mon Sep 17 00:00:00 2001 From: Hermann <blumh@student.ethz.ch> Date: Mon, 30 Apr 2018 20:45:22 +0200 Subject: [PATCH] fix icon naming --- src/views/elements.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/elements.js b/src/views/elements.js index 85b74f3..0a57a4c 100644 --- a/src/views/elements.js +++ b/src/views/elements.js @@ -267,21 +267,21 @@ export class submitButton { export const BackButton = { view: ({ attrs }) => m(IconButton, { - icon: { svg: m.trust(icons.iconBackSVG) }, + icon: { svg: m.trust(icons.back) }, ink: false, events: { onclick: attrs.leave }, }), }; export const ClearButton = { view: ({ attrs }) => m(IconButton, { - icon: { svg: m.trust(icons.iconClearSVG) }, + icon: { svg: m.trust(icons.clear) }, ink: false, events: { onclick: attrs.clear }, }), }; export const SearchIcon = { view: () => m(IconButton, { - icon: { svg: m.trust(icons.iconSearchSVG) }, + icon: { svg: m.trust(icons.search) }, inactive: true, }), }; -- GitLab