2018-10-21 19:00:10 -04:00
|
|
|
<my-widget-config [widgetComponent]="this">
|
|
|
|
<ng-template #widgetParamsTemplate let-widget="widget">
|
|
|
|
<label class="label-block">
|
2020-10-23 07:30:20 -04:00
|
|
|
{{' Spotify URI' | translate}}
|
|
|
|
<span class="text-muted">{{'Click \'share\' from your favourite playlist, artist, track, or album and paste the Spotify URI here.' | translate}}</span>
|
2018-10-21 19:00:10 -04:00
|
|
|
<input type="text" class="form-control"
|
|
|
|
placeholder="spotify:artist:7CajNmpbOovFoOoasH2HaY"
|
|
|
|
[(ngModel)]="widget.dimension.newData.uri" name="widget-uri-{{widget.id}}"
|
|
|
|
[disabled]="isUpdating"/>
|
|
|
|
</label>
|
|
|
|
</ng-template>
|
2020-10-23 07:30:20 -04:00
|
|
|
</my-widget-config>
|