From 24b16beb500c82765752cb9b91e04465de0de511 Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Tue, 2 Oct 2018 07:48:07 -0700 Subject: [PATCH 1/3] SHIBUI-887 Fixed info icon text for retained roles --- backend/src/main/resources/i18n/messages.properties | 2 +- backend/src/main/resources/i18n/messages_en.properties | 2 +- .../metadata/resolver/container/upload-resolver.component.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/main/resources/i18n/messages.properties b/backend/src/main/resources/i18n/messages.properties index 3f87d2de8..ed9e61e67 100644 --- a/backend/src/main/resources/i18n/messages.properties +++ b/backend/src/main/resources/i18n/messages.properties @@ -444,7 +444,7 @@ tooltip.enable-provider-upon-saving=Enable Metadata Provider upon saving? tooltip.max-validity-interval=Defines the window within which the metadata is valid. tooltip.require-signed-root=If true, this fails to load metadata with no signature on the root XML element. tooltip.certificate-file=A key used to verify the signature. Conflicts with trustEngineRef and both of the child elements. -tooltip.retained-roles=Retained Roles +tooltip.retained-roles=Controls whether to keep entity descriptors that contain no roles tooltip.remove-roleless-entity-descriptors=Controls whether to keep entity descriptors that contain no roles. tooltip.remove-empty-entities-descriptors=Controls whether to keep entities descriptors that contain no entity descriptors. diff --git a/backend/src/main/resources/i18n/messages_en.properties b/backend/src/main/resources/i18n/messages_en.properties index 8b20b2efc..6d64dd72a 100644 --- a/backend/src/main/resources/i18n/messages_en.properties +++ b/backend/src/main/resources/i18n/messages_en.properties @@ -433,7 +433,7 @@ tooltip.enable-provider-upon-saving=Enable Metadata Provider upon saving? tooltip.max-validity-interval=Defines the window within which the metadata is valid. tooltip.require-signed-root=If true, this fails to load metadata with no signature on the root XML element. tooltip.certificate-file=A key used to verify the signature. Conflicts with trustEngineRef and both of the child elements. -tooltip.retained-roles=Retained Roles +tooltip.retained-roles=Controls whether to keep entity descriptors that contain no roles tooltip.remove-roleless-entity-descriptors=Controls whether to keep entity descriptors that contain no roles. tooltip.remove-empty-entities-descriptors=Controls whether to keep entities descriptors that contain no entity descriptors. diff --git a/ui/src/app/metadata/resolver/container/upload-resolver.component.html b/ui/src/app/metadata/resolver/container/upload-resolver.component.html index ebc62dd51..8bae4bc0d 100644 --- a/ui/src/app/metadata/resolver/container/upload-resolver.component.html +++ b/ui/src/app/metadata/resolver/container/upload-resolver.component.html @@ -36,7 +36,7 @@

- +
- + Must be an integer equal to or greater than 0
@@ -99,7 +107,15 @@ - + Must be an integer equal to or greater than 0 From 85a13c54847dfb6796b604d81a219e6ad0cbe3c0 Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Tue, 2 Oct 2018 08:46:54 -0700 Subject: [PATCH 3/3] SHIBUI-876 Fixed issue with long email addresses wrapping --- .../domain/component/forms/finish-form.component.html | 2 +- ui/src/theme/typography.scss | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ui/src/app/metadata/domain/component/forms/finish-form.component.html b/ui/src/app/metadata/domain/component/forms/finish-form.component.html index 28b9dda91..0e28beacc 100644 --- a/ui/src/app/metadata/domain/component/forms/finish-form.component.html +++ b/ui/src/app/metadata/domain/component/forms/finish-form.component.html @@ -52,7 +52,7 @@

{{ contact.name }} - {{ contact.emailAddress }} + {{ contact.emailAddress }} {{ contact.type }} diff --git a/ui/src/theme/typography.scss b/ui/src/theme/typography.scss index 2e5d717d1..76c9bc107 100644 --- a/ui/src/theme/typography.scss +++ b/ui/src/theme/typography.scss @@ -2,4 +2,8 @@ font-size: 2.5rem; font-weight: normal; line-height: 1.2; -} \ No newline at end of file +} + +.br-word { + word-break: break-word; +}