Fix cannot add new cols in new table

pull/35/head
Ondřej Hruška 6 years ago
parent 9ec5a151cc
commit 9b722aa7c9
Signed by: MightyPork
GPG Key ID: 2C5FD5035250423D
  1. 2
      resources/assets/js/components/ColumnEditor.vue

@ -279,7 +279,7 @@ export default {
addCol () {
if (this.newTable) {
this.columns.push({
id: '_' + (this.newColNum++),
id: 'dummy_' + (this.newColNum++),
name: '',
type: 'string',
title: '',

Loading…
Cancel
Save