Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 2827211

Browse files
committed
Resolves #598 - MetadataURI lost on app registration
1 parent 053ebbf commit 2827211

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/src/app/apps/apps-register/apps-register.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ <h1 [ngBusy]="busy">Register Applications</h1>
4949
class="form-control" placeholder="&lt;maven://io.spring.cloud:scdf-sample-app:jar:1.0.0&gt;" [pattern]="uriPattern">
5050
<span class="help-block" *ngIf="uri.invalid && uri.touched">Please provide a valid URI pointing to the respective properties file.</span>
5151
</div>
52-
<div [class.has-error]="metadataUri.invalid && metadataUri.touched">
53-
<input #metadataUri="ngModel" type="text" name="metadataUri_{{index}}" [(ngModel)]="item.metadataUri"
52+
<div [class.has-error]="metaDataUri.invalid && metaDataUri.touched">
53+
<input #metaDataUri="ngModel" type="text" name="metaDataUri_{{index}}" [(ngModel)]="item.metaDataUri"
5454
class="form-control" placeholder="&lt;maven://io.spring.cloud:scdf-sample-app:jar:metadata:1.0.0&gt; [OPTIONAL]" [pattern]="uriPattern">
55-
<span class="help-block" *ngIf="metadataUri.invalid && metadataUri.touched">Please provide a valid URI pointing to the respective properties file.</span>
55+
<span class="help-block" *ngIf="metaDataUri.invalid && metaDataUri.touched">Please provide a valid URI pointing to the respective properties file.</span>
5656
</div>
5757
</td>
5858
<td>

0 commit comments

Comments
 (0)