chore: 🎨 format

This commit is contained in:
ThatOneCalculator 2023-07-14 16:51:49 -07:00
parent 102b57424e
commit f3aa965c38
No known key found for this signature in database
GPG key ID: 8703CACD01000000
2 changed files with 4 additions and 6 deletions

View file

@ -1,12 +1,9 @@
<template>
<section class="ssazuxis">
<header
class="_button"
@click="showBody = !showBody"
>
<header class="_button" @click="showBody = !showBody">
<div class="title"><slot name="header"></slot></div>
<div class="divider"></div>
<button
<button
class="_button"
:aria-expanded="showBody"
:aria-controls="bodyId"

View file

@ -93,7 +93,8 @@ const props = defineProps<{
}>();
let isLong = $ref(
props.detailed && props.user.description &&
props.detailed &&
props.user.description &&
(props.user.description.split("\n").length > 9 ||
props.user.description.length > 400),
);