From 04274ef19aec8ed9d950218616b12bb5e885c77f Mon Sep 17 00:00:00 2001 From: lana-k Date: Sun, 15 Sep 2024 18:08:46 +0200 Subject: [PATCH] #116 fix lint --- src/components/CsvJsonImport/index.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/CsvJsonImport/index.vue b/src/components/CsvJsonImport/index.vue index b542d45..05a75f2 100644 --- a/src/components/CsvJsonImport/index.vue +++ b/src/components/CsvJsonImport/index.vue @@ -348,7 +348,8 @@ export default { this.addedTable = this.tableName // Inform about import success period = time.getPeriod(start, end) - importMsg.message = `Importing ${this.typeName} into a SQLite database is completed in ${period}.` + importMsg.message = `Importing ${this.typeName} ` + + `into a SQLite database is completed in ${period}.` importMsg.type = 'success' // Loading indicator for import is not needed anymore @@ -408,7 +409,8 @@ export default { return [ '/*', ` * Your NDJSON file has been imported into ${this.addedTable} table.`, - ` * Run this SQL query to get values of property ${firstKey} and make them available for charting.`, + ` * Run this SQL query to get values of property ${firstKey} ` + + 'and make them available for charting.', ' */', `SELECT doc->>'${firstKey}'`, `FROM "${this.addedTable}"` @@ -431,7 +433,8 @@ export default { return [ '/*', ` * Your JSON file has been imported into ${this.addedTable} table.`, - ` * Run this SQL query to get values of property ${firstKey} and make them available for charting.`, + ` * Run this SQL query to get values of property ${firstKey} ` + + 'and make them available for charting.', ' */', 'SELECT *', `FROM "${this.addedTable}"`,