mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
9dc4e99aca
- the traslation feature without the changes from other branches
13 lines
664 B
HTML
13 lines
664 B
HTML
<my-widget-config [widgetComponent]="this">
|
|
<ng-template #widgetParamsTemplate let-widget="widget">
|
|
<label class="label-block">
|
|
{{' 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>
|
|
<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>
|
|
</my-widget-config>
|