DEV: Respect radix rule in eslint-config-discourse 1.0.6
This commit is contained in:
parent
ffe315c4a2
commit
f1d463ecb0
|
@ -63,7 +63,7 @@ const QueryRowContentComponent = Ember.Component.extend(
|
||||||
|
|
||||||
const parts = this.columnTemplates.map((t, idx) => {
|
const parts = this.columnTemplates.map((t, idx) => {
|
||||||
const value = row[idx],
|
const value = row[idx],
|
||||||
id = parseInt(value);
|
id = parseInt(value, 10);
|
||||||
|
|
||||||
const ctx = {
|
const ctx = {
|
||||||
value,
|
value,
|
||||||
|
|
Loading…
Reference in New Issue