Skip to content

Commit

Permalink
refactor: download method naming changed [WTEL-3894]
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirBeria committed Nov 16, 2023
1 parent d04a4b4 commit 5ab5c64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/wt-save-failed-popup/wt-save-failed-popup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</wt-button>
<wt-button
color="secondary"
@click="downloadFlowJSON"
@click="download"
>
{{ $t('webitelUI.saveFailedPopup.exportToJson') }}
</wt-button>
Expand All @@ -41,16 +41,16 @@
<script>
export default {
name: 'FlowSaveFailedPopup',
emits: ['close-popup', 'save', 'download-flow-json'],
emits: ['close-popup', 'save', 'download'],
methods: {
closePopup() {
this.$emit('close-popup');
},
save() {
this.$emit('save');
},
downloadFlowJSON() {
this.$emit('download-flow-json');
download() {
this.$emit('download');
},
},
};
Expand Down

0 comments on commit 5ab5c64

Please sign in to comment.