chore(cleanup): no console.log in the app
This commit is contained in:
parent
79edf6a0a5
commit
a49a311caa
|
@ -25,8 +25,6 @@ const labels = computed(() => ({
|
||||||
|
|
||||||
const podName = computed(() => (n => n === "" ? "No name" : n ?? 'Funkwhale')(get(nodeinfo.value, 'metadata.nodeName')))
|
const podName = computed(() => (n => n === "" ? "No name" : n ?? 'Funkwhale')(get(nodeinfo.value, 'metadata.nodeName')))
|
||||||
|
|
||||||
console.log(podName)
|
|
||||||
|
|
||||||
const banner = computed(() => get(nodeinfo.value, 'metadata.banner'))
|
const banner = computed(() => get(nodeinfo.value, 'metadata.banner'))
|
||||||
const shortDescription = computed(() => get(nodeinfo.value, 'metadata.shortDescription'))
|
const shortDescription = computed(() => get(nodeinfo.value, 'metadata.shortDescription'))
|
||||||
|
|
||||||
|
|
|
@ -27,10 +27,6 @@ const props = defineProps<{
|
||||||
& RaisedProps
|
& RaisedProps
|
||||||
& WidthProps>()
|
& WidthProps>()
|
||||||
|
|
||||||
if ('minContent' in props) {
|
|
||||||
console.log("MIN CONTENT")
|
|
||||||
}
|
|
||||||
|
|
||||||
const slots = useSlots()
|
const slots = useSlots()
|
||||||
const isIconOnly = computed(() => !!props.icon && !slots.default)
|
const isIconOnly = computed(() => !!props.icon && !slots.default)
|
||||||
|
|
||||||
|
|
|
@ -16,8 +16,6 @@ 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(size)
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
Loading…
Reference in New Issue