Skip to content

Commit be939b7

Browse files
authored
update with new sanity_test template (#3234)
1 parent 70e57a2 commit be939b7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

_css/custom.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@
150150
}
151151

152152
.code-svg {
153-
width: 20px;
154-
height: 20px;
153+
width: 16px;
154+
height: 16px;
155155
margin: 10px 5px 0px 8px;
156156
}
157157

_scripts/actions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,9 @@ $(document).ready(function() {
607607
});
608608
}
609609
}
610-
commands.push(data.sanity_test);
610+
if(data.sanity_test.extra_commands != null)
611+
commands = commands.concat(data.sanity_test.extra_commands);
612+
commands = commands.concat(data.sanity_test.commands);
611613
ret += $.code_gen(commands);
612614
m = data.version.match("v([0-9\\.]+\\+([a-zA-Z]+))");
613615
if(m != null && m.length == 3) {

0 commit comments

Comments
 (0)