Skip to content

Commit

Permalink
Merge pull request #74 from BackofenLab/workMalek
Browse files Browse the repository at this point in the history
Work malek
  • Loading branch information
Maluuck authored Oct 18, 2024
2 parents dc71ebd + 81678bb commit d8b48e6
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 39 deletions.
2 changes: 1 addition & 1 deletion Requirements.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ prepare:

conda:
# https://docs.anaconda.com/free/anaconda/install/linux/
sudo apt-get install libgl1-mesa-glx libegl1-mesa libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2 libxi6 libxtst6
sudo apt-get install libgl1 libglx-mesa0 libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2t64 libxi6 libxtst6
sudo apt-get update
curl -o /tmp/Miniconda3-latest-Linux-x86_64.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash /tmp/Miniconda3-latest-Linux-x86_64.sh
Expand Down
45 changes: 21 additions & 24 deletions frontend/src/components/toolbar/modules/ExportingButton.vue
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
<template>
<div>
<div class="tool-item">
<span v-on:click="open_export()">Export proteins as .csv</span>
</div>
<div>
<div class="tool-item">
<span v-on:click="open_export()">Export proteins as .csv</span>
</div>
</template>

<script>
export default {
name: "ExportingButton",
props: ["mode"],
data() {
return {
};
</div>
</template>

<script>
export default {
name: "ExportingButton",
props: ["mode"],
data() {
return {};
},
methods: {
open_export() {
this.emitter.emit("openExportScreen", this.mode);
},
methods: {
open_export() {
this.emitter.emit("openExportScreen", this.mode);
},
},
};
</script>

<style scoped>
</style>

},
};
</script>

<style scoped></style>
5 changes: 1 addition & 4 deletions frontend/src/components/verticalpane/VerticalPane.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
<template>
<div id="vertical-pane">
<SearchField
:data="gephi_data"
:mode="mode"
></SearchField>
<SearchField :data="gephi_data" :mode="mode"></SearchField>
<div class="upper-block">
<div class="tab-system">
<ul>
Expand Down
7 changes: 2 additions & 5 deletions frontend/src/components/verticalpane/VerticalPaneCitation.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
<template>
<div id="vertical-pane">
<SearchField
:data="citation_data"
:mode="mode"
></SearchField>
<SearchField :data="citation_data" :mode="mode"></SearchField>
<div class="upper-block">
<div class="tab-system">
<ul>
Expand Down Expand Up @@ -87,7 +84,7 @@ export default {
CitationSummary,
CitationCommunities,
PathwayMenu,
SearchField
SearchField,
},
data() {
return {
Expand Down
7 changes: 2 additions & 5 deletions frontend/src/components/verticalpane/VerticalPanePathway.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
<template>
<div id="vertical-pane">
<SearchField
:data="term_data"
:mode="mode"
></SearchField>
<SearchField :data="term_data" :mode="mode"></SearchField>
<div class="upper-block">
<div class="tab-system">
<ul>
Expand Down Expand Up @@ -63,7 +60,7 @@ export default {
components: {
PathwayGraphMenu,
PathwayMenu,
SearchField
SearchField,
},
data() {
return {
Expand Down

0 comments on commit d8b48e6

Please sign in to comment.