remove console.log

This commit is contained in:
Simon Vieille 2025-04-14 22:43:35 +02:00
commit 31b330451c
Signed by: deblan
GPG key ID: 579388D585F70417
2 changed files with 0 additions and 12 deletions

View file

@ -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()

View file

@ -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
})