Removed debug output; CategoryHeaderCard always only 1 line high

This commit is contained in:
EisiBaer 2023-07-18 20:59:00 +02:00
parent 2a1d1859a8
commit c8adc77938
3 changed files with 9 additions and 5 deletions

View File

@ -9,9 +9,14 @@ const props = defineProps({
<template> <template>
<div class="card bg-pink-accent-primary mb-1 flex-fill category-header-card" :title="props.categoryDescription"> <div class="card bg-pink-accent-primary mb-1 flex-fill category-header-card" :title="props.categoryDescription">
<div class="card-body text-center"> <div class="card-body text-center overflow-auto">
<div class="d-flex justify-content-center align-items-center h-100"> <div class="d-flex justify-content-center align-items-center h-100">
<h4 class="mb-0 user-select-none"> <h4 class="invisible">
&nbsp;
</h4>
</div>
<div class="position-absolute start-50 top-50 translate-middle w-100">
<h4 class="mb-0 user-select-none category-text">
{{ props.categoryName }} {{ props.categoryName }}
</h4> </h4>
</div> </div>

View File

@ -407,6 +407,7 @@ onBeforeRouteLeave((to, from) => {
//TODO List: //TODO List:
// -Profile Pic // -Profile Pic
// -More Question Types // -More Question Types
// -Height of Category Headers (on Multiline)
</script> </script>

View File

@ -69,7 +69,7 @@ export const useGameStore = defineStore('game', {
} }
}) })
.catch( ( err ) => { .catch( ( err ) => {
console.debug(err); console.err(err);
reject("An Error occured while joining this game! You will be forwarded to the main page"); reject("An Error occured while joining this game! You will be forwarded to the main page");
}) })
}); });
@ -227,7 +227,6 @@ export const useGameStore = defineStore('game', {
} }
this.websocketConnection.onmessage = ( message ) => { this.websocketConnection.onmessage = ( message ) => {
console.debug("Got Message!", message);
let dataRaw = message.data; let dataRaw = message.data;
if( dataRaw === undefined || typeof dataRaw !== "string" ){ if( dataRaw === undefined || typeof dataRaw !== "string" ){
console.error("Data not parseable") console.error("Data not parseable")
@ -238,7 +237,6 @@ export const useGameStore = defineStore('game', {
this.socketListeners.forEach( x => { this.socketListeners.forEach( x => {
if( data.event === x.event){ if( data.event === x.event){
x.callback(data); x.callback(data);
console.debug( x.event + " callback called");
} }
}); });
}; };