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> </div>
</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>