Skip to content

Commit 04274ef

Browse files
committed
#116 fix lint
1 parent 3893a66 commit 04274ef

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/components/CsvJsonImport/index.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,8 @@ export default {
348348
this.addedTable = this.tableName
349349
// Inform about import success
350350
period = time.getPeriod(start, end)
351-
importMsg.message = `Importing ${this.typeName} into a SQLite database is completed in ${period}.`
351+
importMsg.message = `Importing ${this.typeName} ` +
352+
`into a SQLite database is completed in ${period}.`
352353
importMsg.type = 'success'
353354
354355
// Loading indicator for import is not needed anymore
@@ -408,7 +409,8 @@ export default {
408409
return [
409410
'/*',
410411
` * Your NDJSON file has been imported into ${this.addedTable} table.`,
411-
` * Run this SQL query to get values of property ${firstKey} and make them available for charting.`,
412+
` * Run this SQL query to get values of property ${firstKey} ` +
413+
'and make them available for charting.',
412414
' */',
413415
`SELECT doc->>'${firstKey}'`,
414416
`FROM "${this.addedTable}"`
@@ -431,7 +433,8 @@ export default {
431433
return [
432434
'/*',
433435
` * Your JSON file has been imported into ${this.addedTable} table.`,
434-
` * Run this SQL query to get values of property ${firstKey} and make them available for charting.`,
436+
` * Run this SQL query to get values of property ${firstKey} ` +
437+
'and make them available for charting.',
435438
' */',
436439
'SELECT *',
437440
`FROM "${this.addedTable}"`,

0 commit comments

Comments
 (0)