Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/SHIBUI-703' into feature…
Browse files Browse the repository at this point in the history
…/SHIBUI-703
  • Loading branch information
Bill Smith committed Nov 12, 2018
2 parents ecbfcb7 + 4e6c571 commit 66ef837
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
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 @@ -278,7 +278,7 @@ label.duration=Duration
label.real-number=Real Number (between 0.0 and 1.0)
label.min-refresh-delay=Min Refresh Delay
label.max-refresh-delay=Max Refresh Delay
label.refresh-delay-factor=A factor applied to the initially determined refresh time in order to determine the next refresh time (typically to ensure refresh takes place prior to the metadata\u0027s expiration). Attempts to refresh metadata will generally begin around the product of this number and the maximum refresh delay.
label.refresh-delay-factor=Refresh Delay Factor
label.resolve-via-predicates-only=Resolve Via Predicates Only?
label.expiration-warning-threshold=Expiration Warning Threshold

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"type": "boolean",
"default": false
},
"reloadableMetadataResolverAttributes": {
"dynamicMetadataResolverAttributes": {
"type": "object",
"properties": {
"refreshDelayFactor": {
Expand All @@ -68,7 +68,7 @@
},
"placeholder": "label.real-number",
"minimum": 0,
"maximum": 1,
"maximum": 0.99,
"default": null
},
"minCacheDuration": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const LocalDynamicMetadataProviderWizard: Wizard<LocalDynamicMetadataProv
label: 'label.common-attributes',
index: 2,
initialValues: [],
schema: 'assets/schema/provider/local-dynamic.schema.json',
schema: '/api/ui/MetadataResolver/LocalDynamicMetadataResolver',
fields: [
'xmlId',
'sourceDirectory'
Expand All @@ -46,16 +46,16 @@ export const LocalDynamicMetadataProviderWizard: Wizard<LocalDynamicMetadataProv
label: 'label.reloading-attributes',
index: 3,
initialValues: [],
schema: 'assets/schema/provider/local-dynamic.schema.json',
schema: '/api/ui/MetadataResolver/LocalDynamicMetadataResolver',
fields: [
'reloadableMetadataResolverAttributes'
'dynamicMetadataResolverAttributes'
],
fieldsets: [
{
type: 'group-lg',
class: ['col-12'],
fields: [
'reloadableMetadataResolverAttributes'
'dynamicMetadataResolverAttributes'
]
}
]
Expand All @@ -65,7 +65,7 @@ export const LocalDynamicMetadataProviderWizard: Wizard<LocalDynamicMetadataProv
label: 'label.finished',
index: 4,
initialValues: [],
schema: 'assets/schema/provider/local-dynamic.schema.json',
schema: '/api/ui/MetadataResolver/LocalDynamicMetadataResolver',
fields: [
'enabled'
],
Expand All @@ -91,7 +91,7 @@ export const LocalDynamicMetadataProviderEditor: Wizard<LocalDynamicMetadataProv
label: 'label.common-attributes',
index: 1,
initialValues: [],
schema: 'assets/schema/provider/local-dynamic.schema.json',
schema: '/api/ui/MetadataResolver/LocalDynamicMetadataResolver',
fields: [
'enabled',
'xmlId',
Expand All @@ -103,9 +103,9 @@ export const LocalDynamicMetadataProviderEditor: Wizard<LocalDynamicMetadataProv
label: 'label.reloading-attributes',
index: 2,
initialValues: [],
schema: 'assets/schema/provider/local-dynamic.schema.json',
schema: '/api/ui/MetadataResolver/LocalDynamicMetadataResolver',
fields: [
'reloadableMetadataResolverAttributes'
'dynamicMetadataResolverAttributes'
]
}
]
Expand Down

0 comments on commit 66ef837

Please sign in to comment.