1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 10:38:54 +08:00

refactoring manipulations with My queries

This commit is contained in:
lana-k
2021-01-05 23:09:47 +01:00
parent 9035cae19f
commit 8d083a93c4
7 changed files with 207 additions and 176 deletions

View File

@@ -13,6 +13,7 @@ import 'codemirror/theme/neo.css'
import 'codemirror/addon/hint/show-hint.js'
import 'codemirror/addon/hint/show-hint.css'
import 'codemirror/addon/hint/sql-hint.js'
import 'codemirror/addon/display/autorefresh.js'
import { debounce } from 'debounce'
const sqlHint = CM.hint.sql
@@ -42,7 +43,9 @@ export default {
mode: 'text/x-mysql',
theme: 'neo',
lineNumbers: true,
line: true
line: true,
autofocus: true,
autoRefresh: true
}
}
},