partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit a78b01040734721255e5e0e4f23be9834b89b7bb
parent 114df75edb20cdd4dc01e05ead1f8895a413faed
Author: Felicitus <felicitus@felicitus.org>
Date:   Tue,  8 Sep 2015 15:01:55 +0200

Fixed accept and reset icons for the part filter panel

Diffstat:
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartFilterPanel.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartFilterPanel.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartFilterPanel.js @@ -78,14 +78,14 @@ Ext.define('PartKeepr.PartFilterPanel', { this.resetButton = Ext.create("Ext.button.Button", { text: i18n("Reset"), handler: this.onReset, - icon: 'resources/diagona-icons/icons/16/101.png', + iconCls: 'web-icon cancel', scope: this }); // Create the apply button this.applyButton = Ext.create("Ext.button.Button", { text: i18n("Apply"), - icon: 'resources/diagona-icons/icons/16/102.png', + iconCls: 'web-icon accept', handler: this.onApply, scope: this });