Fix appearance issue in clients list screen with long client ids
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-29 12:34:47 +01:00
parent d4de81f1fb
commit 6d341069a0
6 changed files with 25 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,3 @@
/target
.idea
storage
/storage

View File

@@ -21,3 +21,7 @@ body {
.form-control::placeholder {
color: #555;
}
.table-break-works td {
word-break: break-all;
}

View File

@@ -0,0 +1 @@
users.json

View File

@@ -0,0 +1,11 @@
- id: testclient1
name: Client 1
description: client1
secret: secretone
redirect_uri: http://127.0.0.1:8011/
granted_to_all_users: true
- id: testclient2
name: Client 2
description: client2
secret: secrettwo
redirect_uri: http://127.0.0.1:8012/

View File

@@ -0,0 +1,7 @@
- id: upstream
name: Upstream
logo: openid
client_id: foo
client_secret: bar
configuration_url: http://127.0.0.1:9001/dex/.well-known/openid-configuration
allow_auto_account_creation: true

View File

@@ -1,7 +1,7 @@
{% extends "base_settings_page.html" %}
{% block content %}
<table class="table table-hover" style="max-width: 800px;" aria-describedby="Clients list">
<table class="table table-hover table-break-works" style="max-width: 800px;" aria-describedby="Clients list">
<thead>
<tr>
<th scope="col">ID</th>