Skip to content

Commit

Permalink
Merged in bugfix/SHIBUI-806-reversed (pull request #190)
Browse files Browse the repository at this point in the history
SHIBUI-806 fixed reversed check

Approved-by: Shibui Jenkins <shibui.jenkins@gmail.com>
  • Loading branch information
rmathis committed Sep 5, 2018
2 parents 609ddb0 + 07c7c75 commit 4804797
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 4804797

Please sign in to comment.