Skip to content

Commit

Permalink
account for undefined cells in busted
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenweaver committed Nov 24, 2024
1 parent 8299bfa commit c6bf75d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions src/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -483,12 +483,6 @@ td {
background-color: #cc4242;
}

svg g > text {
font-family: "Noto Sans" sans-serif;
font-size: 13px;
font-weight: 600;
}

.form-control {
display: inline-block;
height: 38px;
Expand Down
2 changes: 1 addition & 1 deletion src/jsx/busted.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class BUSTEDContents extends React.Component {
//undefined
];

if (_.includes(toInclude, name) || name == undefined) {
if (_.includes(toInclude, name) || name == undefined || true) {
const node = Inspector.into(this.figureRef.current)(name);
if (name == "viewof table1") {
node._node.classList.add("table");
Expand Down

0 comments on commit c6bf75d

Please sign in to comment.