fix chips on server page (#2654)
Fix chips not having the remove functionality Closes #2471
This commit is contained in:
parent
596167f443
commit
209cf7fbe0
2 changed files with 4 additions and 4 deletions
|
|
@ -173,7 +173,7 @@
|
||||||
@remove="removeBlockedIPs(blocked_ip)"
|
@remove="removeBlockedIPs(blocked_ip)"
|
||||||
color="primary"
|
color="primary"
|
||||||
text-color="white"
|
text-color="white"
|
||||||
v-text="blocked_ip"
|
:label="blocked_ip"
|
||||||
></q-chip>
|
></q-chip>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
|
@ -202,7 +202,7 @@
|
||||||
@remove="removeAllowedIPs(allowed_ip)"
|
@remove="removeAllowedIPs(allowed_ip)"
|
||||||
color="primary"
|
color="primary"
|
||||||
text-color="white"
|
text-color="white"
|
||||||
v-text="allowed_ip"
|
:label="allowed_ip"
|
||||||
></q-chip>
|
></q-chip>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
|
|
||||||
|
|
@ -23,8 +23,8 @@
|
||||||
@remove="removeAdminUser(user)"
|
@remove="removeAdminUser(user)"
|
||||||
color="primary"
|
color="primary"
|
||||||
text-color="white"
|
text-color="white"
|
||||||
|
:label="user"
|
||||||
>
|
>
|
||||||
<span v-text="user"></span>
|
|
||||||
</q-chip>
|
</q-chip>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
|
@ -49,8 +49,8 @@
|
||||||
@remove="removeAllowedUser(user)"
|
@remove="removeAllowedUser(user)"
|
||||||
color="primary"
|
color="primary"
|
||||||
text-color="white"
|
text-color="white"
|
||||||
|
:label="user"
|
||||||
>
|
>
|
||||||
<span v-text="user" />
|
|
||||||
</q-chip>
|
</q-chip>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue