mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-05 22:36:05 +02:00
Formatting fixes
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
icon="el-icon-download"
|
icon="el-icon-download"
|
||||||
circle
|
circle
|
||||||
style="margin-left: 5px"
|
style="margin-left: 5px"
|
||||||
|
:disabled="!fullscreenImageDialog.imageUrl.startsWith('http')"
|
||||||
@click="
|
@click="
|
||||||
downloadAndSaveImage(fullscreenImageDialog.imageUrl, fullscreenImageDialog.fileName)
|
downloadAndSaveImage(fullscreenImageDialog.imageUrl, fullscreenImageDialog.fileName)
|
||||||
"></el-button>
|
"></el-button>
|
||||||
@@ -70,7 +71,8 @@
|
|||||||
document.body.appendChild(link);
|
document.body.appendChild(link);
|
||||||
link.click();
|
link.click();
|
||||||
document.body.removeChild(link);
|
document.body.removeChild(link);
|
||||||
} catch {
|
} catch (error) {
|
||||||
|
console.error('Error downloading image:', error);
|
||||||
new Noty({
|
new Noty({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
text: escapeTag(`Failed to download image. ${url}`)
|
text: escapeTag(`Failed to download image. ${url}`)
|
||||||
|
|||||||
@@ -195,7 +195,7 @@
|
|||||||
|
|
||||||
<el-table-column :label="t('table.feed.type')" prop="type" width="80">
|
<el-table-column :label="t('table.feed.type')" prop="type" width="80">
|
||||||
<template #default="scope">
|
<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>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
|
|||||||
@@ -662,7 +662,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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">
|
<template #default="scope">
|
||||||
<Timer :epoch="scope.row.timer" />
|
<Timer :epoch="scope.row.timer" />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user