mirror of
https://gitlab.com/openlp/web-remote.git
synced 2024-12-22 03:22:48 +00:00
Style buttons, preselt songs in search
This commit is contained in:
parent
a1db0af862
commit
3a19146d17
@ -27,8 +27,8 @@ template: `
|
||||
<table>
|
||||
<tr *ngFor="let item of searchResults">
|
||||
<td>{{item[1]}}</td>
|
||||
<td><button md-button color="primary" (click)="addToService(item[0])">Add</button></td>
|
||||
<td><button md-button color="primary" (click)="sendLive(item[0])">Send Live</button></td>
|
||||
<td><button mat-button color="primary" (click)="addToService(item[0])">Add</button></td>
|
||||
<td><button mat-button color="accent" (click)="sendLive(item[0])">Send Live</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
@ -42,7 +42,7 @@ export class OpenLPSearchComponent implements OnInit {
|
||||
public searchPlugins: PluginDescription[] = [];
|
||||
public searchText = null;
|
||||
public searchResults = null;
|
||||
public selectedPlugin: string;
|
||||
public selectedPlugin: string = "songs";
|
||||
public currentPlugin: string;
|
||||
|
||||
constructor(private openlpService: OpenLPService) {}
|
||||
|
Loading…
Reference in New Issue
Block a user