Browse Source

refactor: variable naming

Signed-off-by: mertmit <mertmit99@gmail.com>
feat/export-nest
mertmit 2 years ago
parent
commit
5a5c498f94
  1. 4
      packages/nc-gui/pages/index/index/index.vue

4
packages/nc-gui/pages/index/index/index.vue

@ -46,10 +46,10 @@ const pageChange = (p: number) => {
} }
const loadProjects = async () => { const loadProjects = async () => {
const lastPage = activePage.value const lastActivePage = activePage.value
const response = await api.project.list({}) const response = await api.project.list({})
projects.value = response.list projects.value = response.list
activePage.value = lastPage activePage.value = lastActivePage
} }
const filteredProjects = computed( const filteredProjects = computed(

Loading…
Cancel
Save