Skip to content

Commit

Permalink
fixed search not hiding titles
Browse files Browse the repository at this point in the history
  • Loading branch information
cbartondock authored and doZennn committed Jan 25, 2020
1 parent 838bb26 commit 95164a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/renderer/services/parsers.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,13 @@ export class ParsersService {
case 'defaultHeroImage':
case 'defaultLogoImage':
case 'localImages':
return this.fileParser.validateFieldGlob(data || '');
case 'localTallImages':
return this.fileParser.validateFieldGlob(data || '');
case 'localHeroImages':
return this.fileParser.validateFieldGlob(data || '');
case 'localLogoImages':
return this.fileParser.validateFieldGlob(data || '');
case 'localIcons':
return this.fileParser.validateFieldGlob(data || '');
default:
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/templates/preview.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div class="apps">
<ng-container *ngFor="let appId of previewData[steamDir][steamUser].apps | keys">
<ng-container *ngVar="previewData[steamDir][steamUser].apps[appId] as app">
<div class="title">
<div class="title" *ngIf="(app.title | fuzzyTest: filterValue)">
<span>{{app.title}}</span>
</div>
<ng-container *ngFor="let imagetype of ['long','tall','hero','logo']">
Expand Down

0 comments on commit 95164a7

Please sign in to comment.