Skip to content

Commit

Permalink
SHIBUI-806 fixed reversed check
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Sep 5, 2018
1 parent ce9c7e8 commit 7d2040b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/metadata/provider/model/base.provider.form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const BaseMetadataProviderEditor: Wizard<BaseMetadataProvider> = {
return err;
},
'/metadataURL': (value, property, form) => {
return !!UriValidator.isUri(value) ? {
return !UriValidator.isUri(value) ? {
code: 'INVALID_URI',
path: `#${property.path}`,
message: 'URI must be valid format.',
Expand Down

0 comments on commit 7d2040b

Please sign in to comment.