Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Maluuck committed Oct 18, 2024
1 parent 41bd442 commit 81678bb
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 38 deletions.
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 81678bb

Please sign in to comment.