remove console.log
This commit is contained in:
parent
a8ed3e1752
commit
31b330451c
2 changed files with 0 additions and 12 deletions
|
|
@ -203,7 +203,6 @@ const categories = ref([])
|
|||
const section = ref('apps')
|
||||
const newCustomCategory = ref(null)
|
||||
const editCustomCategoryKey = ref(null)
|
||||
const appsCategoriesCustomNext = ref({})
|
||||
|
||||
const openModal = () => {
|
||||
modal.value = true
|
||||
|
|
@ -274,13 +273,6 @@ const getOptions = (custom) => {
|
|||
return data
|
||||
}
|
||||
|
||||
watch(
|
||||
() => appsCategoriesCustomNext,
|
||||
(value) => {
|
||||
console.log(value)
|
||||
},
|
||||
)
|
||||
|
||||
onMounted(async () => {
|
||||
apps.value = await navStore.getApps()
|
||||
categories.value = await navStore.getCategories()
|
||||
|
|
|
|||
|
|
@ -124,8 +124,6 @@ watch(
|
|||
function getFiltredAndSortedApps(items, order, topMenuApps, topSideMenuApps) {
|
||||
const data = []
|
||||
|
||||
console.log(order)
|
||||
|
||||
items.forEach((item) => {
|
||||
if (topMenuApps.includes(item.id) && !topSideMenuApps.includes(item.id)) {
|
||||
return
|
||||
|
|
@ -142,8 +140,6 @@ function getFiltredAndSortedApps(items, order, topMenuApps, topSideMenuApps) {
|
|||
data.push(item)
|
||||
})
|
||||
|
||||
console.log(data)
|
||||
|
||||
return data.sort((a, b) => {
|
||||
return a.order < b.order ? -1 : 1
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue