name: "score",
title: "Score",
style: {maxWidth: 110},
- sortValue: function (val) { return Number(val.options.sortValue); }
+ sortValue: (val) => Number(val.options.sortValue)
}, {
name: "symbols",
title: "Symbols",
title: "Scan time",
breakpoints: "md",
style: {maxWidth: 80},
- sortValue: function (val) { return Number(val); }
+ sortValue: (val) => Number(val)
}, {
sorted: true,
direction: "DESC",
name: "time",
title: "Time",
- sortValue: function (val) { return Number(val.options.sortValue); }
+ sortValue: (val) => Number(val.options.sortValue)
}, {
name: "user",
title: "Authenticated user",
name: "ts",
title: "Time",
style: {width: 300, maxWidth: 300},
- sortValue: function (val) { return Number(val.options.sortValue); }},
+ sortValue: (val) => Number(val.options.sortValue)},
{name: "type",
title: "Worker type",
breakpoints: "md",
"text-align": "right",
"white-space": "nowrap"
},
- sortValue: function (val) { return Number(val.options.sortValue); }
+ sortValue: (val) => Number(val.options.sortValue)
}, {
name: "symbols",
title: "Symbols" +
title: "Scan time",
breakpoints: "lg",
style: {maxWidth: 72},
- sortValue: function (val) { return Number(val); }
+ sortValue: (val) => Number(val)
}, {
classes: "history-col-time",
sorted: true,
direction: "DESC",
name: "time",
title: "Time",
- sortValue: function (val) { return Number(val.options.sortValue); }
+ sortValue: (val) => Number(val.options.sortValue)
}, {
name: "user",
title: "Authenticated user",