Skip to content

Commit

Permalink
update with new sanity_test template (#3234)
Browse files Browse the repository at this point in the history
  • Loading branch information
jingxu10 authored Sep 3, 2024
1 parent 70e57a2 commit be939b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@
}

.code-svg {
width: 20px;
height: 20px;
width: 16px;
height: 16px;
margin: 10px 5px 0px 8px;
}

Expand Down
4 changes: 3 additions & 1 deletion _scripts/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,9 @@ $(document).ready(function() {
});
}
}
commands.push(data.sanity_test);
if(data.sanity_test.extra_commands != null)
commands = commands.concat(data.sanity_test.extra_commands);
commands = commands.concat(data.sanity_test.commands);
ret += $.code_gen(commands);
m = data.version.match("v([0-9\\.]+\\+([a-zA-Z]+))");
if(m != null && m.length == 3) {
Expand Down

0 comments on commit be939b7

Please sign in to comment.