Skip to content

Commit

Permalink
NN-415 Grid view for term graph section
Browse files Browse the repository at this point in the history
- permanently show graph names
  • Loading branch information
TripZz committed Dec 9, 2023
1 parent 5145def commit e235469
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/enrichment/graph/PathwayGraph.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<div class="slider" tabindex="0">
<div v-for="(entry, index) in filt_graphs" :key="index" class="graph" v-on:click="switch_graph(entry)" @mouseover="activeGraphIndex = index" @mouseout="activeGraphIndex = -1">
<SnapshotGraph :propValue="entry" :index="entry.id"/>
<div class="graph-options" v-show="activeGraphIndex == index" >
<div class="bookmark-graph" v-on:click.stop="add_graph(entry)" :class="{ checked: favourite_graphs.has(entry.id)}" ref="checkboxStatesGraph"></div>
<img class="remove-graph" src="@/assets/pathwaybar/cross.png" v-on:click.stop="remove_graph(entry)">
<div class="graph-options" >
<div class="bookmark-graph" v-show="activeGraphIndex == index" v-on:click.stop="add_graph(entry)" :class="{ checked: favourite_graphs.has(entry.id)}" ref="checkboxStatesGraph"></div>
<img class="remove-graph" v-show="activeGraphIndex == index" src="@/assets/pathwaybar/cross.png" v-on:click.stop="remove_graph(entry)">
<div class="graph-name colortype">
<input type="text" v-model="entry.label" class="empty" @click.stop />
</div>
Expand Down

0 comments on commit e235469

Please sign in to comment.