Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Increase height of mode shape visualization canvas
Browse files Browse the repository at this point in the history
  • Loading branch information
deslaughter committed May 14, 2024
1 parent fcad924 commit dea4f93
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/components/Results.vue
Original file line number Diff line number Diff line change
Expand Up @@ -529,15 +529,14 @@ const charts = computed(() => {
<div class="card-body">
<div class="row">
<div class="col-10">
<div style="width:100%; height: 75vh">
<div style="width:100%; height: 80vh">
<ModeViz :ModeData="project.modeViz[project.currentVizID]" :showNodePaths="showNodePaths">
</ModeViz>
</div>
</div>
<div class="col-2">
<div class="d-grid gap-2 mb-3">
<a class="btn btn-primary" @click="project.clearModeViz">Clear
Visualizations</a>
<a class="btn btn-primary" @click="project.clearModeViz">Clear</a>
<a class="btn btn-primary" @click="showNodePaths = !showNodePaths">{{
showNodePaths ? 'Hide' : 'Show' }} Node Paths</a>
</div>
Expand Down

0 comments on commit dea4f93

Please sign in to comment.