string based keyProps not being parsed properly by handlebars
This commit is contained in:
parent
b63a901a47
commit
6857dc08e7
|
@ -24,7 +24,7 @@ exports.generateRowIdField = (keyProps = []) => {
|
|||
keyProps = [keyProps]
|
||||
}
|
||||
// this conserves order and types
|
||||
return encodeURIComponent(JSON.stringify(keyProps))
|
||||
return encodeURIComponent(JSON.stringify(keyProps).replace(/"/g, ''))
|
||||
}
|
||||
|
||||
// should always return an array
|
||||
|
|
Loading…
Reference in New Issue