@@ -348,7 +348,8 @@ export default {
348
348
this .addedTable = this .tableName
349
349
// Inform about import success
350
350
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} .`
352
353
importMsg .type = ' success'
353
354
354
355
// Loading indicator for import is not needed anymore
@@ -408,7 +409,8 @@ export default {
408
409
return [
409
410
' /*' ,
410
411
` * 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.' ,
412
414
' */' ,
413
415
` SELECT doc->>'${ firstKey} '` ,
414
416
` FROM "${ this .addedTable } "`
@@ -431,7 +433,8 @@ export default {
431
433
return [
432
434
' /*' ,
433
435
` * 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.' ,
435
438
' */' ,
436
439
' SELECT *' ,
437
440
` FROM "${ this .addedTable } "` ,
0 commit comments