chore: clean up
This commit is contained in:
parent
b55620b3d4
commit
cc928f808c
1 changed files with 9 additions and 7 deletions
|
|
@ -785,7 +785,7 @@ watch(
|
||||||
@click="openDialog('FORM')"
|
@click="openDialog('FORM')"
|
||||||
color="primary"
|
color="primary"
|
||||||
padding="xs"
|
padding="xs"
|
||||||
icon="mdi-account-plus"
|
icon="mdi-account-plus-outline"
|
||||||
></q-fab-action>
|
></q-fab-action>
|
||||||
</ButtonAddComponent>
|
</ButtonAddComponent>
|
||||||
|
|
||||||
|
|
@ -833,7 +833,7 @@ watch(
|
||||||
? Object.entries(typeStats).map(([key, val]) => ({
|
? Object.entries(typeStats).map(([key, val]) => ({
|
||||||
count: val,
|
count: val,
|
||||||
label: key,
|
label: key,
|
||||||
icon: 'mdi-account',
|
icon: 'mdi-account-outline',
|
||||||
color:
|
color:
|
||||||
(
|
(
|
||||||
{
|
{
|
||||||
|
|
@ -848,7 +848,7 @@ watch(
|
||||||
{
|
{
|
||||||
label: selectorLabel,
|
label: selectorLabel,
|
||||||
count: typeStats[selectorLabel],
|
count: typeStats[selectorLabel],
|
||||||
icon: 'mdi-account',
|
icon: 'mdi-account-outline',
|
||||||
color:
|
color:
|
||||||
selectorLabel === 'USER'
|
selectorLabel === 'USER'
|
||||||
? 'cyan'
|
? 'cyan'
|
||||||
|
|
@ -1207,7 +1207,7 @@ watch(
|
||||||
<q-icon
|
<q-icon
|
||||||
v-else
|
v-else
|
||||||
size="sm"
|
size="sm"
|
||||||
name="mdi-account"
|
name="mdi-account-outline"
|
||||||
style="color: white"
|
style="color: white"
|
||||||
/>
|
/>
|
||||||
<q-badge
|
<q-badge
|
||||||
|
|
@ -1615,7 +1615,7 @@ watch(
|
||||||
:active="formData.status !== 'INACTIVE'"
|
:active="formData.status !== 'INACTIVE'"
|
||||||
useToggle
|
useToggle
|
||||||
color="white"
|
color="white"
|
||||||
icon="mdi-account"
|
icon="mdi-account-outline"
|
||||||
bgColor="linear-gradient(135deg, rgba(43,137,223,1) 0%, rgba(230,51,81,1) 100%)"
|
bgColor="linear-gradient(135deg, rgba(43,137,223,1) 0%, rgba(230,51,81,1) 100%)"
|
||||||
v-model:toggle-status="formData.status"
|
v-model:toggle-status="formData.status"
|
||||||
hideFade
|
hideFade
|
||||||
|
|
@ -1839,7 +1839,7 @@ watch(
|
||||||
active
|
active
|
||||||
useToggle
|
useToggle
|
||||||
color="white"
|
color="white"
|
||||||
icon="mdi-account-plus"
|
icon="mdi-account-plus-outline"
|
||||||
bgColor="linear-gradient(135deg, rgba(43,137,223,1) 0%, rgba(230,51,81,1) 100%)"
|
bgColor="linear-gradient(135deg, rgba(43,137,223,1) 0%, rgba(230,51,81,1) 100%)"
|
||||||
v-model:toggle-status="formData.status"
|
v-model:toggle-status="formData.status"
|
||||||
:menu="formMenuIcon"
|
:menu="formMenuIcon"
|
||||||
|
|
@ -2015,7 +2015,9 @@ watch(
|
||||||
<q-icon
|
<q-icon
|
||||||
v-else
|
v-else
|
||||||
size="15rem"
|
size="15rem"
|
||||||
:name="infoDrawer ? 'mdi-account' : 'mdi-account-plus'"
|
:name="
|
||||||
|
infoDrawer ? 'mdi-account-outline' : 'mdi-account-plus-outline'
|
||||||
|
"
|
||||||
style="color: white"
|
style="color: white"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue