mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-07 02:28:54 +08:00
fix lint error
This commit is contained in:
@@ -25,7 +25,7 @@ export default {
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
result.values = source.data.map(row => row.map(value =>
|
result.values = source.data.map(row => row.map(value =>
|
||||||
value instanceof Date ? value.toISOString(): value
|
value instanceof Date ? value.toISOString() : value
|
||||||
))
|
))
|
||||||
result.columns = []
|
result.columns = []
|
||||||
for (let i = 1; i <= source.data[0].length; i++) {
|
for (let i = 1; i <= source.data[0].length; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user