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> </template>
<script> <script>
export default { export default {
name: 'editLaunchingApplicationModal', name: 'editLaunchingApplicationModal',
props: { props: {
fileName: String, application: String fileName: String, application: String
}, },
mounted() { mounted() {
$(this.$refs.modal).modal('show'); $(this.$refs.modal).modal('show');
$(this.$refs.modal).on('hidden.bs.modal', () => { $(this.$refs.modal).on('hidden.bs.modal', () => {
this.$emit('cancel'); this.$emit('cancel');
}); });
}, },
methods: { methods: {
cancel() { cancel() {
$(this.$refs.modal).modal('hide'); $(this.$refs.modal).modal('hide');
}
} }
} }
}
</script> </script>