Formatting fixes

This commit is contained in:
Natsumi
2025-07-24 20:11:28 +12:00
parent 2e4c1fc4c5
commit a6aa87b150
3 changed files with 5 additions and 3 deletions

View File

@@ -13,6 +13,7 @@
icon="el-icon-download"
circle
style="margin-left: 5px"
:disabled="!fullscreenImageDialog.imageUrl.startsWith('http')"
@click="
downloadAndSaveImage(fullscreenImageDialog.imageUrl, fullscreenImageDialog.fileName)
"></el-button>
@@ -70,7 +71,8 @@
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
} catch {
} catch (error) {
console.error('Error downloading image:', error);
new Noty({
type: 'error',
text: escapeTag(`Failed to download image. ${url}`)

View File

@@ -195,7 +195,7 @@
<el-table-column :label="t('table.feed.type')" prop="type" width="80">
<template #default="scope">
<span class="x-link" v-text="t('view.feed.filters.' + scope.row.type)"></span>
<span v-text="t('view.feed.filters.' + scope.row.type)"></span>
</template>
</el-table-column>

View File

@@ -662,7 +662,7 @@
</template>
</template>
</el-table-column>
<el-table-column :label="t('table.playerList.timer')" width="80" prop="timer" sortable>
<el-table-column :label="t('table.playerList.timer')" width="90" prop="timer" sortable>
<template #default="scope">
<Timer :epoch="scope.row.timer" />
</template>