DEV: Respect radix rule in eslint-config-discourse 1.0.6

This commit is contained in:
Penar Musaraj 2019-11-18 10:08:15 -05:00
parent ffe315c4a2
commit f1d463ecb0
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ const QueryRowContentComponent = Ember.Component.extend(
const parts = this.columnTemplates.map((t, idx) => {
const value = row[idx],
id = parseInt(value);
id = parseInt(value, 10);
const ctx = {
value,