1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +08:00

remove console.log

This commit is contained in:
lana-k
2021-05-05 21:46:29 +02:00
parent bcaebd4840
commit 8684b4cef9

View File

@@ -227,10 +227,8 @@ export default {
}, },
async finish () { async finish () {
console.log('finish')
this.$store.commit('setDb', this.newDb) this.$store.commit('setDb', this.newDb)
this.$store.commit('saveSchema', this.schema) this.$store.commit('saveSchema', this.schema)
console.log('after saveSchema')
if (this.importCsvCompleted) { if (this.importCsvCompleted) {
this.$modal.hide('parse') this.$modal.hide('parse')
const stmt = [ const stmt = [
@@ -398,7 +396,6 @@ export default {
this.delimiter = '' this.delimiter = ''
return Promise.all([this.previewCSV(), this.animationPromise]) return Promise.all([this.previewCSV(), this.animationPromise])
.then(() => { .then(() => {
console.log('show')
this.$modal.show('parse') this.$modal.show('parse')
}) })
} else { } else {