[BUGFIX] URL router can fail at high load

This commit is contained in:
Xaver Maierhofer 2018-07-22 14:44:34 +02:00
parent 20a8c4583a
commit 02e02f9219
No known key found for this signature in database
GPG Key ID: 7FDCE23FD2EC9FE8
2 changed files with 5 additions and 1 deletions

View File

@ -60,7 +60,7 @@ define(['d3-interpolate', 'snabbdom', 'utils/version', 'filters/genericnode', 'h
var filter = new Filter(_.t(name), d[2], d[0], d[3]);
var a = V.h('a', { props: { href: '#' }, on: { click: addFilter(filter) } }, d[0]);
var a = V.h('a', { on: { click: addFilter(filter) } }, d[0]);
var th = V.h('th', a);
var td = V.h('td', V.h('span', {

View File

@ -22,4 +22,8 @@
min-width: 1.5em;
padding: .25em .5em;
}
a {
cursor: pointer;
}
}