Fixes #22340: Correct display of allowed IPs for tokens in web UI

This commit is contained in:
Jeremy Stretch 2026-06-02 12:39:05 -04:00
parent 839259ccec
commit 5b08541242
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class TokenPanel(panels.ObjectAttributesPanel):
write_enabled = attrs.BooleanAttr('write_enabled')
expires = attrs.TextAttr('expires')
last_used = attrs.TextAttr('last_used')
allowed_ips = attrs.TextAttr('allowed_ips')
allowed_ips = attrs.ArrayAttr('allowed_ips', label=_('Allowed IPs'))
class TokenExamplePanel(panels.Panel):