From b48b033be8c0e19b97f1b1e1493ed3e12219d1a0 Mon Sep 17 00:00:00 2001 From: Yurii Date: Wed, 25 Feb 2026 11:36:06 +0200 Subject: [PATCH] ux fix --- client/src/views/settings/fields/oidc-redirect-uri.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/src/views/settings/fields/oidc-redirect-uri.js b/client/src/views/settings/fields/oidc-redirect-uri.js index 6f327b4d8d..a657f997c5 100644 --- a/client/src/views/settings/fields/oidc-redirect-uri.js +++ b/client/src/views/settings/fields/oidc-redirect-uri.js @@ -45,11 +45,15 @@ export default class extends VarcharFieldView { {{/if}} ` + /** + * @private + * @type {import('collection').default|null} + */ portalCollection = null data() { const isNotEmpty = this.model.entityType !== 'AuthenticationProvider' || - this.portalCollection; + (this.portalCollection && this.portalCollection.length); return { value: this.getValueForDisplay(),