mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-10 07:05:57 +08:00
Merge pull request #7671 from rekonder/aj_SCI_10827
Save table content after adding row or columns [SCI-10827]
This commit is contained in:
commit
8b042db2d9
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…
Add table
Reference in a new issue