change icon for pending (#2980)
This commit is contained in:
parent
4afe6dbd6d
commit
6754ffb9dc
2 changed files with 8 additions and 2 deletions
|
|
@ -272,7 +272,8 @@
|
||||||
<q-icon
|
<q-icon
|
||||||
v-else-if="props.row.status === 'pending'"
|
v-else-if="props.row.status === 'pending'"
|
||||||
@click="showDetailsToggle(props.row)"
|
@click="showDetailsToggle(props.row)"
|
||||||
name="settings_ethernet"
|
name="downloading"
|
||||||
|
:style="props.row.outgoing ? 'transform: rotate(225deg)' : 'transform: scaleX(-1) rotate(315deg)'"
|
||||||
color="grey"
|
color="grey"
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
></q-icon>
|
></q-icon>
|
||||||
|
|
|
||||||
|
|
@ -796,8 +796,13 @@
|
||||||
</q-icon>
|
</q-icon>
|
||||||
<q-icon
|
<q-icon
|
||||||
v-else
|
v-else
|
||||||
name="settings_ethernet"
|
name="downloading"
|
||||||
color="grey"
|
color="grey"
|
||||||
|
:style="
|
||||||
|
props.row.isOut
|
||||||
|
? 'transform: rotate(225deg)'
|
||||||
|
: 'transform: scaleX(-1) rotate(315deg)'
|
||||||
|
"
|
||||||
@click="props.expand = !props.expand"
|
@click="props.expand = !props.expand"
|
||||||
>
|
>
|
||||||
<q-tooltip><span v-text="$t('pending')"></span></q-tooltip>
|
<q-tooltip><span v-text="$t('pending')"></span></q-tooltip>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue