partkeepr

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

commit 39d6570dafb3e78b23340428afd19c19feed4f9c
parent 79bf0adfc4bf1d85a7df832d5139755f28a6e14b
Author: Felicitus <felicitus@felicitus.org>
Date:   Sun, 11 Sep 2011 14:09:28 +0200

Bugfix: Specify date format explicitely because only chrome seems to have auto-detect for Y-m-d H:i:s

Diffstat:
Mfrontend/js/Models/StatisticSample.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/js/Models/StatisticSample.js b/frontend/js/Models/StatisticSample.js @@ -1,7 +1,7 @@ Ext.define("PartKeepr.StatisticSample", { extend: "Ext.data.Model", fields: [ - { name: 'start', type: 'date'}, + { name: 'start', type: 'date', dateFormat: 'Y-m-d H:i:s'}, { name: 'parts', type: 'int', useNull: true }, { name: 'categories', type: 'int', useNull: true } ]