1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

docs: update README.md

This commit is contained in:
2020-08-10 18:09:33 +02:00
parent 771f8a2d68
commit c89c1ce83c
3 changed files with 33 additions and 5 deletions

View File

@ -35,7 +35,9 @@ module.exports = {
type: 'Type',
mimeType: 'Mime-Type',
download: 'Download',
add: 'Add'
add: 'Add',
data: 'Data',
properties: 'Properties'
},
message: {
appWelcome: 'Welcome to Antares SQL Client!',

View File

@ -2,7 +2,7 @@
import Connection from '@/ipc-api/Connection';
import { uidGen } from 'common/libs/uidGen';
function remapStructure (structure) {
function remapStructure (structure) { // TODO: move to main process and add fields (for autocomplete purpose)
const databases = structure.map(table => table.TABLE_SCHEMA)
.filter((value, index, self) => self.indexOf(value) === index);