mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-12-16 05:42:13 +08:00
Add missing filtering by signatures on task table [SCI-10270]
This commit is contained in:
parent
0843391010
commit
5aae4e0db6
2 changed files with 6 additions and 3 deletions
|
|
@ -7,6 +7,6 @@ const app = createApp();
|
|||
app.component('MyModulesList', MyModulesList);
|
||||
app.config.globalProperties.i18n = window.I18n;
|
||||
app.use(PerfectScrollbar);
|
||||
window.myModulesList = mountWithTurbolinks(app, '#MyModulesList', () => {
|
||||
mountWithTurbolinks(app, '#MyModulesList', () => {
|
||||
delete window.myModulesList;
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<DataTable
|
||||
ref="table"
|
||||
ref="list"
|
||||
:columnDefs="columnDefs"
|
||||
tableId="MyModuleList"
|
||||
:dataUrl="dataSource"
|
||||
|
|
@ -64,7 +64,7 @@ import MoveModal from './modals/move.vue';
|
|||
import AccessModal from '../shared/access_modal/modal.vue';
|
||||
|
||||
export default {
|
||||
name: 'ExperimentsList',
|
||||
name: 'MyModulesList',
|
||||
components: {
|
||||
DataTable,
|
||||
ConfirmationModal,
|
||||
|
|
@ -223,6 +223,9 @@ export default {
|
|||
this.columnDefs = columns;
|
||||
this.filters = filters;
|
||||
},
|
||||
mounted() {
|
||||
window.myModulesList = this;
|
||||
},
|
||||
computed: {
|
||||
viewRenders() {
|
||||
const canvasLabel = this.currentViewMode === 'active'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue