Remove unintentionally included lodash in client build

This commit is contained in:
Pavel Djundik 2018-02-28 17:19:33 +02:00
parent f282a973f8
commit 20a6133d73

View file

@ -1,6 +1,5 @@
"use strict";
const _ = require("lodash");
const constants = require("./constants");
const templates = require("../views");
@ -22,8 +21,8 @@ function getStoredTypes(condensed) {
function updateText(condensed, addedTypes) {
const obj = getStoredTypes(condensed);
_.forOwn(addedTypes, (count, type) => {
obj[type] += count;
Object.keys(addedTypes).map((type) => {
obj[type] += addedTypes[type];
condensed.data(type, obj[type]);
});