From ebca2059a1623440863fa423fc8980606093960d Mon Sep 17 00:00:00 2001 From: wactbprot <thsteinbock@web.de> Date: Mon, 19 Aug 2013 11:02:45 +0200 Subject: [PATCH] year als string --- views/reduceYear/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/reduceYear/map.js b/views/reduceYear/map.js index 44562ab..bb221b9 100644 --- a/views/reduceYear/map.js +++ b/views/reduceYear/map.js @@ -1,6 +1,6 @@ function(doc) { if(doc.Calibration && doc.Calibration.Year){ - emit(doc.Calibration.Year, null); + emit("" + doc.Calibration.Year, null); } } \ No newline at end of file -- GitLab