fixed a couple of typos

pull/3/head
Chris Veilleux 2019-04-02 12:33:54 -05:00
parent 9cb3b21346
commit d92096a2cb
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
>
</fa>
<div fxFlex>
<h1>{{skill.display_name}}</h1>
<h1>{{skill.displayName}}</h1>
<div class="mat-body-1" [innerHTML]="skill.summary"></div>
</div>
</div>

View File

@ -6,6 +6,7 @@ import { Subject } from 'rxjs/internal/Subject';
import { tap } from 'rxjs/operators';
export interface AvailableSkill {
displayName: string;
icon: Object;
iconImage: string;
isMycroftMade: boolean;
@ -13,7 +14,6 @@ export interface AvailableSkill {
marketCategory: string;
id: string;
summary: string;
title: string;
trigger: string;
}
@ -28,6 +28,7 @@ export interface Icon {
}
export interface SkillDetail {
displayName: string;
categories: string[];
credits: SkillCredits[];
description: string;
@ -37,7 +38,6 @@ export interface SkillDetail {
id: string;
repositoryUrl: string;
summary: string;
title: string;
triggers: string;
worksOnKDE: boolean;
worksOnMarkOne: boolean;