hound fix

This commit is contained in:
Giga Chubinidze 2024-01-04 02:54:21 +04:00
parent 5305c8ad21
commit 42133d5b8c

View file

@ -25,20 +25,20 @@
</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');
}
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>