mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-04 19:53:19 +08:00
Save table content after adding row or columns [SCI-10827]
This commit is contained in:
parent
9642f173d9
commit
302e7366b9
1 changed files with 6 additions and 0 deletions
|
@ -312,6 +312,12 @@ export default {
|
|||
afterRemoveCol: () => {
|
||||
this.updateTableData();
|
||||
},
|
||||
afterCreateCol: () => {
|
||||
this.updateTableData();
|
||||
},
|
||||
afterCreateRow: () => {
|
||||
this.updateTableData();
|
||||
},
|
||||
beforeKeyDown: (e) => {
|
||||
if (e.keyCode === 27) { // esc
|
||||
this.editingCell = false;
|
||||
|
|
Loading…
Reference in a new issue