Project

General

Profile

« Previous | Next » 

Revision 51771

fixed some bugs

View differences:

sources-update-repo.component.html
26 26
              <div *ngIf="errorMessage" class="uk-alert uk-alert-danger">{{ errorMessage }}</div>
27 27
              <div *ngIf="repo" class="uk-margin-medium-bottom">
28 28
                <h1 class="uk-article-title">
29
                  <a id="updateLogoURL" (click)="datasourceUpdateForm.updateLogoUrl(repo.logoUrl)">
29
                  <a id="updateLogoURL" (click)="updateLogoUrl(repo.logoUrl)">
30 30
                    <img *ngIf="!logoURL" src="/assets/imgs/yourLogoHere.jpg" style="margin-right: 15px; margin-top:-8px" width="60">
31 31
                    <img *ngIf="logoURL" src="{{ logoURL }}" style="margin-right: 15px; margin-top:-8px" width="60">
32 32
                  </a>
......
89 89
      </div>
90 90
    </div>
91 91

  
92

  
93
    <confirmation-dialog #updateLogoUrlModal [title]="'Update Logo URL'" [isModalShown]="isModalShown"
94
                         [confirmActionButton]="'Update'" (emitObject)="updatedLogoUrl($event)">
95
      <input type="text" name="logoUrl" placeholder="Logo URL" class="form-control" value="{{ logoURL }}" (change)="getNewLogoUrl($event)" >
96
    </confirmation-dialog>
97

  
98

  

Also available in: Unified diff