Skip to content

Commit

Permalink
Merge pull request #249 from gbishop/main
Browse files Browse the repository at this point in the history
Merge in fixes from upstream
  • Loading branch information
gbishop authored Apr 19, 2024
2 parents 8cbc24c + 8323efb commit b753ac0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ function getFileMenuItems(bar) {
label: "Save sheet",
title: "Save the content as a spreadsheet",
callback: () => {
saveContent(db.designName, Globals.data.allrows, "xlsx");
saveContent(db.designName, Globals.data.contentRows, "xlsx");
},
}),
new MenuItem({
Expand Down
4 changes: 4 additions & 0 deletions src/css/grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ body:not(.designing) video[dbsrc]:not([src]) {
height: 100%;
min-height: 0;
}

.grid button span {
pointer-events: none;
}
.grid b {
color: blue;
}
Expand Down

0 comments on commit b753ac0

Please sign in to comment.