mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2026-01-07 00:36:08 +08:00
hound fix
This commit is contained in:
parent
473fad28de
commit
b6a84ecd87
2 changed files with 5 additions and 5 deletions
|
|
@ -56,7 +56,7 @@
|
|||
|
||||
<script>
|
||||
import deleteAttachmentModal from './delete_modal.vue'
|
||||
import editLaunchingApplicationModal from './edit_launching_application_modal.vue'
|
||||
import editLaunchingApplicationModal from './edit_launching_application_modal.vue';
|
||||
import moveAssetModal from '../modal/move.vue'
|
||||
import MoveMixin from './mixins/move.js'
|
||||
import OpenLocallyMixin from './mixins/open_locally.js'
|
||||
|
|
@ -78,7 +78,7 @@
|
|||
return {
|
||||
viewModeOptions: ['inline', 'thumbnail', 'list'],
|
||||
deleteModal: false,
|
||||
editAppModal: false
|
||||
editAppModal: false,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
export default {
|
||||
name: 'editLaunchingApplicationModal',
|
||||
props: {
|
||||
fileName: String, application: String
|
||||
fileName: String, application: String,
|
||||
},
|
||||
mounted() {
|
||||
$(this.$refs.modal).modal('show');
|
||||
|
|
@ -38,7 +38,7 @@ export default {
|
|||
methods: {
|
||||
cancel() {
|
||||
$(this.$refs.modal).modal('hide');
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue