partkeepr

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

commit d126724cb3c29988076145acdf769a42442d3a0d
parent 2dc4dc4469aac5013f0b395539c0d3695f8224e6
Author: Felicia Hummel <felicia@drachenkatze.org>
Date:   Fri, 20 Dec 2019 19:07:44 +0100

Merge pull request #999 from jophut/PartKeepr-997

Fixes 997: Duplicate expand button changed to collapse button
Diffstat:
Msrc/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartsGrid.js | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartsGrid.js b/src/PartKeepr/FrontendBundle/Resources/public/js/Components/Part/PartsGrid.js @@ -115,11 +115,11 @@ Ext.define('PartKeepr.PartsGrid', { this.bottomToolbar.add({ xtype: 'button', - tooltip: i18n("Expand all Groups"), - iconCls: this.expandRowButtonIconCls, + tooltip: i18n("Collapse all Groups"), + iconCls: this.collapseRowButtonIconCls, listeners: { scope: this.groupingFeature, - click: this.groupingFeature.expandAll + click: this.groupingFeature.collapseAll } });