mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-30 05:20:55 +03:00
perf(Torrent): Wrap title
This commit is contained in:
parent
bec28c2d54
commit
55c2ef8115
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ const isTorrentSelected = computed(() => dashboardStore.isTorrentInSelection(pro
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<v-card :class="`sideborder ${torrent.state} pointer`" :color="isTorrentSelected ? `torrent-${torrent.state}-darken-3` : undefined" width="100%" @click="onClick">
|
<v-card :class="`sideborder ${torrent.state} pointer`" :color="isTorrentSelected ? `torrent-${torrent.state}-darken-3` : undefined" width="100%" @click="onClick">
|
||||||
<v-card-title class="font-weight-bold">{{ torrent.name }}</v-card-title>
|
<v-card-title class="font-weight-bold text-wrap">{{ torrent.name }}</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<div class="d-flex gap flex-wrap">
|
<div class="d-flex gap flex-wrap">
|
||||||
<component :is="getComponent(ppt.type)" :torrent="torrent" v-bind="ppt.props" v-for="ppt in torrentProperties" />
|
<component :is="getComponent(ppt.type)" :torrent="torrent" v-bind="ppt.props" v-for="ppt in torrentProperties" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue