Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke committed Nov 27, 2024
1 parent 7780403 commit 2d36d21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion shared/common/components/resultGrid/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class ResultGridState {
? tops.findIndex((top) => top > offsetRowIndex) - 1
: offsetRowIndex;
return {
data: parentData[dataIndex][header.parent.name!],
data: parentData[dataIndex]?.[header.parent.name!] ?? [],
indexOffset: indexOffset + (tops ? tops[dataIndex] : dataIndex),
endIndex: indexOffset + (tops ? tops[dataIndex + 1] : dataIndex + 1),
};
Expand Down
1 change: 1 addition & 0 deletions shared/studio/components/modals/modals.module.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.modalContent {
width: 280px;
overflow: visible;
font-size: 14px;
}

0 comments on commit 2d36d21

Please sign in to comment.