hound fix

This commit is contained in:
Giga Chubinidze 2024-01-04 02:57:14 +04:00
parent e304ad8ee6
commit e0003e0789

View file

@ -24,21 +24,21 @@
</div>
</template>
<script>
export default {
name: 'editLaunchingApplicationModal',
props: {
fileName: String, application: String
},
mounted() {
$(this.$refs.modal).modal('show');
$(this.$refs.modal).on('hidden.bs.modal', () => {
this.$emit('cancel');
});
},
methods: {
cancel() {
$(this.$refs.modal).modal('hide');
export default {
name: 'editLaunchingApplicationModal',
props: {
fileName: String, application: String
},
mounted() {
$(this.$refs.modal).modal('show');
$(this.$refs.modal).on('hidden.bs.modal', () => {
this.$emit('cancel');
});
},
methods: {
cancel() {
$(this.$refs.modal).modal('hide');
}
}
}
}
</script>