fix(ui): clean up console.logs
This commit is contained in:
parent
e1bd30eb9d
commit
7c29dee096
|
@ -7,15 +7,11 @@ const minSize = 32
|
||||||
|
|
||||||
const measure = ref()
|
const measure = ref()
|
||||||
|
|
||||||
console.log("SIZE", size)
|
|
||||||
|
|
||||||
watchEffect(() => { measure.value = {
|
watchEffect(() => { measure.value = {
|
||||||
size: `${Math.max(size, minSize)}px`,
|
size: `${Math.max(size, minSize)}px`,
|
||||||
margin: `${(size-Math.max(size, minSize))/2}px`
|
margin: `${(size-Math.max(size, minSize))/2}px`
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
console.log("MEASURE", measure)
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
|
@ -80,8 +80,6 @@ const labels = computed(() => ({
|
||||||
|
|
||||||
const store = useStore()
|
const store = useStore()
|
||||||
|
|
||||||
console.log(store.state)
|
|
||||||
|
|
||||||
const quota = computed(() => store.state.instance.settings.users.upload_quota.value)
|
const quota = computed(() => store.state.instance.settings.users.upload_quota.value)
|
||||||
const defaultQuota = computed(() => humanSize(quota.value * 1e6))
|
const defaultQuota = computed(() => humanSize(quota.value * 1e6))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue