Skip to content

Commit

Permalink
Merged in bugfix/SHIBUI-1002 (pull request #260)
Browse files Browse the repository at this point in the history
SHIBUI-1002: Fixed bugs related to filesystemMetadataProvider;

Approved-by: Ryan Mathis <rmathis@unicon.net>
  • Loading branch information
Jodie Muramoto authored and rmathis committed Dec 11, 2018
2 parents de6a5ef + 4cb61ba commit e56efaa
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"properties": {
"name": {
"title": "label.metadata-provider-name",
"title": "label.service-provider-name-dashboard-display-only",
"description": "tooltip.metadata-provider-name",
"type": "string",
"widget": {
Expand Down Expand Up @@ -135,7 +135,7 @@
},
"placeholder": "label.real-number",
"minimum": 0,
"maximum": 1,
"maximum": 0.99,
"default": null
}
}
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/i18n/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ label.metadata-provider-type=Metadata Provider Type
label.metadata-provider-name=Metadata Provider Name
label.select-metadata-type=Select a metadata provider type
label.metadata-provider-status=Metadata Provider Status
label.enable-provider-upon-saving=Enable Metadata Provider?
label.enable-provider-upon-saving=If checkbox is clicked, the metadata provider is enabled for integration with the IdP
label.certificate-type=Type

label.metadata-file=Metadata File
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/i18n/messages_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ label.metadata-provider-type=Metadata Provider Type
label.metadata-provider-name=Metadata Provider Name
label.select-metadata-type=Select a metadata provider type
label.metadata-provider-status=Metadata Provider Status
label.enable-provider-upon-saving=Enable Metadata Provider?
label.enable-provider-upon-saving=If checkbox is clicked, the metadata provider is enabled for integration with the IdP
label.certificate-type=Type

label.metadata-file=Metadata File
Expand Down
12 changes: 6 additions & 6 deletions ui/src/app/metadata/provider/model/file-system.provider.form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export const FileSystemMetadataProviderWizard: Wizard<FileSystemMetadataProvider
]
},
{
id: 'reloading',
label: 'label.reloading-attributes',
id: 'dynamic',
label: 'label.dynamic-attributes',
index: 3,
initialValues: [],
schema: '/api/ui/MetadataResolver/FilesystemMetadataResolver',
Expand Down Expand Up @@ -116,14 +116,14 @@ export const FileSystemMetadataProviderEditor: Wizard<FileSystemMetadataProvider
class: ['mb-3'],
fields: [
'name',
'@type',
'enabled'
'@type'
]
},
{
type: 'group-lg',
class: ['col-12'],
fields: [
'enabled',
'xmlId',
'metadataFile',
'doInitialization'
Expand All @@ -132,8 +132,8 @@ export const FileSystemMetadataProviderEditor: Wizard<FileSystemMetadataProvider
]
},
{
id: 'reloading',
label: 'label.reloading-attributes',
id: 'dynamic',
label: 'label.dynamic-attributes',
index: 2,
initialValues: [],
schema: '/api/ui/MetadataResolver/FilesystemMetadataResolver',
Expand Down

0 comments on commit e56efaa

Please sign in to comment.