I have a challenge with displaying avatars for users in a table. The rows are too small and the images are getting cut off.
https://i.sstatic.net/QjkHj.png
Table:
<v-data-table :headers="tableHeaders" :items="streamers">
<template v-slot:item.avatar="{ }">
<v-img :max-height="100" aspect-ratio="1" :src="'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRubQH1F3DZWpm3WYs5SKpQBSH_ocCYenGjkA&usqp=CAU'"/>
</template>
</v-data-table>
Any suggestions on how to ensure the entire image is visible in the table?