fix: defaultParams function name

This commit is contained in:
kolaente 2021-11-02 21:03:55 +01:00
parent 566fe77b02
commit 0a0c6a6450
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ describe('Lists', () => {
.should('contain', tasks[0].title)
})
it('Should have working column switches', () => {
it.only('Should have working column switches', () => {
TaskFactory.create(1)
cy.visit('/lists/1/table')

View File

@ -17,7 +17,7 @@
<script>
import {closeWhenClickedOutside} from '@/helpers/closeWhenClickedOutside'
import Filters from '../../../components/list/partials/filters'
import {defaultParams} from '../../tasks/mixins/taskList'
import {getDefaultParams} from '../../tasks/mixins/taskList'
export default {
name: 'filter-popup',