Merge remote-tracking branch 'remotes/origin/feature/device-status' into dev
commit
1328203f2f
|
@ -36,7 +36,7 @@ export class SettingFieldComponent implements OnInit {
|
||||||
|
|
||||||
onCheckboxChange(changeEvent: MatCheckboxChange) {
|
onCheckboxChange(changeEvent: MatCheckboxChange) {
|
||||||
this.newValue.emit(
|
this.newValue.emit(
|
||||||
{name: this.fieldDefinition.name, value: changeEvent.checked.toString()}
|
{name: this.fieldDefinition.name, value: changeEvent.checked}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
export interface SettingChange {
|
export interface SettingChange {
|
||||||
name: string;
|
name: string;
|
||||||
value: string;
|
value: string | boolean | number;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,8 +15,9 @@
|
||||||
<mat-card-content [innerHTML]="skill.summary ? skill.summary : ' '">
|
<mat-card-content [innerHTML]="skill.summary ? skill.summary : ' '">
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
</div>
|
</div>
|
||||||
<mat-card-actions>
|
<!-- The install button is commented out until the functionality behind it can be fixed. -->
|
||||||
<market-skill-install-button [skill]="skill" [component]="'skillSummary'">
|
<!-- <mat-card-actions>-->
|
||||||
</market-skill-install-button>
|
<!-- <market-skill-install-button [skill]="skill" [component]="'skillSummary'">-->
|
||||||
</mat-card-actions>
|
<!-- </market-skill-install-button>-->
|
||||||
|
<!-- </mat-card-actions>-->
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
|
Loading…
Reference in New Issue