Skip to content

Commit

Permalink
refreshing DB editor working better
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Dec 29, 2023
1 parent 3da5c38 commit e2d41ce
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,7 @@ use_db("todo")

await mm.pane_home_selectTable( { tableName: newTableName})
await mm.schemaChanged()
await mm.pane_home_drawTabulatorGrid()
},
pane_home_addColumn: async function ( ) {
//----------------------------------------------------------------------------------/
Expand Down Expand Up @@ -622,8 +623,8 @@ use_db("todo")

table.next_field_id ++
await mm.pane_home_selectTable( { tableName: mm.pane_home_selectedTable})

await mm.schemaChanged()
await mm.pane_home_drawTabulatorGrid()
},
pane_home_deleteTable: async function ( ) {
//----------------------------------------------------------------------------------/
Expand All @@ -648,6 +649,7 @@ use_db("todo")
}
await mm.pane_home_selectTable( { tableName: null})
await mm.schemaChanged()
await mm.pane_home_drawTabulatorGrid()
},
pane_home_addRow: async function ( ) {
let mm = this
Expand Down

0 comments on commit e2d41ce

Please sign in to comment.