We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e55900 + cdc57c8 commit 82aa4a4Copy full SHA for 82aa4a4
covasim/webapp/index.html
@@ -288,7 +288,7 @@
288
<template v-else>
289
<div class="row no-gutter">
290
<template v-for="(x, index) in result.graphs">
291
- <div :class="{'col-md-6': (index + 1 < result.graphs.length) || !show_animation, 'col-md-12': (index + 1 === result.graphs.length) && show_animation }">
+ <div :class="{'col-md-6': (index + 1 < result.graphs.length) || !show_animation || result.graphs.length%2 === 0, 'col-md-12': (index + 1 === result.graphs.length) && show_animation && result.graphs.length%2 === 1 }">
292
<plotly-chart :graph="x" :key="x.id"/>
293
</div>
294
</template>
0 commit comments