Fix build errors in project service

This commit is contained in:
Cameron
2019-09-29 17:17:19 +00:00
parent 72a91784f4
commit 332c5db2c8
2 changed files with 3 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import {Pipe, PipeTransform} from '@angular/core';
name: 'projectKeyword' name: 'projectKeyword'
}) })
export class ProjectKeywordPipe implements PipeTransform { export class ProjectKeywordPipe implements PipeTransform {
private const keywords = [ private keywords = [
'MySQL', 'Node', 'Express', 'RxJava', 'Dagger 2', 'Model View Presenter', 'Retrofit', 'Realm', 'Room', 'Model-View-View Model', 'SimpleStack' 'MySQL', 'Node', 'Express', 'RxJava', 'Dagger 2', 'Model View Presenter', 'Retrofit', 'Realm', 'Room', 'Model-View-View Model', 'SimpleStack'
]; ];

View File

@@ -18,7 +18,8 @@ const projects = [
{ {
title: "Movies", title: "Movies",
applicationType: "Android Application (Kotlin)", applicationType: "Android Application (Kotlin)",
description: "<a href='https://github.com/Stampede10343/Movies_TMDb'>Movies</a> is an Android application for viewing movie and TV show info using the TMDB API. Movies is a Single Activity application, leveraging Model-View-View Model, Dagger 2, RxJava and SimpleStack for navigation. There is a focus on caching and a pleasant user experience even on slower networks by combining both in-memory and disk caching for quick load times, especially after a show details have been viewed." description: "<a href='https://github.com/Stampede10343/Movies_TMDb'>Movies</a> is an Android application for viewing movie and TV show info using the TMDB API. Movies is a Single Activity application, leveraging Model-View-View Model, Dagger 2, RxJava and SimpleStack for navigation. There is a focus on caching and a pleasant user experience even on slower networks by combining both in-memory and disk caching for quick load times, especially after a show details have been viewed.",
imgLocation: ""
}, },
{ {
title: "Secure Notes", title: "Secure Notes",