Remove deprecated <big> tag.

This commit is contained in:
Buster Neece 2022-12-17 23:59:50 -06:00
parent b663eb5736
commit 449837e02b
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
5 changed files with 9 additions and 7 deletions

View File

@ -13,7 +13,7 @@
<data-table ref="datatable" id="stations" paginated :fields="fields" :api-url="listUrl">
<template #cell(name)="row">
<big>{{ row.item.name }}</big><br>
<div class="typography-subheading">{{ row.item.name }}</div>
<code>{{ row.item.short_name }}</code>
</template>
<template #cell(frontend_type)="row">

View File

@ -126,12 +126,12 @@
:url="item.station.listen_url" is-stream></play-button>
</td>
<td class="pl-2">
<big>{{ item.station.name }}</big><br>
<template v-if="item.station.is_public">
<div class="typography-subheading">{{ item.station.name }}</div>
<div v-if="item.station.is_public">
<a :href="item.links.public" target="_blank">
{{ $gettext('Public Page') }}
</a>
</template>
</div>
</td>
<td class="text-center">
<span class="pr-1">

View File

@ -15,7 +15,9 @@
</b-thead>
<b-tbody>
<tr class="align-middle" v-for="(row,index) in media" :key="row.id">
<td><big>{{ row.title }}</big></td>
<td>
<span class="typography-subheading">{{ row.title }}</span>
</td>
<td>{{ row.artist }}</td>
</tr>
</b-tbody>

View File

@ -20,7 +20,7 @@
<play-button :url="row.media.links.play" icon-class="lg outlined"></play-button>
</td>
<td class="pl-2">
<big>{{ row.media.title }}</big>
<span class="typography-subheading">{{ row.media.title }}</span>
</td>
<td>{{ row.media.artist }}</td>
<td>{{ row.media.album }}</td>

View File

@ -20,7 +20,7 @@
<data-table ref="datatable" id="station_webhooks" :fields="fields"
:api-url="listUrl">
<template #cell(name)="row">
<big>{{ row.item.name }}</big><br>
<div class="typography-subheading">{{ row.item.name }}</div>
{{ getWebhookName(row.item.type) }}
<b-badge v-if="!row.item.is_enabled" variant="danger">
{{ $gettext('Disabled') }}