Skip to content

Commit

Permalink
Bug fixes - v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sblin committed Mar 11, 2020
1 parent 1a44a0a commit 2052a51
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ supervisord.*
angular-app/build
angular-app/node_modules
xebialabs
.scannerwork
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,5 @@ The Matrix report is available in the "Matrix" tab.
## Versions

- v1.0.0: initial release
- v1.0.1: bug fixes
- v1.0.1: bug fixes
- v1.0.2: search is now case insensitive
2 changes: 1 addition & 1 deletion angular-app/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
<link rel="stylesheet" href="styles.10170deed445a72a15e7.css"></head>
<body>
<app-root></app-root>
<script src="runtime-es2015.0811dcefd377500b5b1a.js" type="module"></script><script src="runtime-es5.0811dcefd377500b5b1a.js" nomodule defer></script><script src="polyfills-es5.ad81c68d1c3d7a0429f1.js" nomodule defer></script><script src="polyfills-es2015.ca64e4516afbb1b890d5.js" type="module"></script><script src="main-es2015.879aee2d7b3c07b3857e.js" type="module"></script><script src="main-es5.879aee2d7b3c07b3857e.js" nomodule defer></script></body>
<script src="runtime-es2015.0811dcefd377500b5b1a.js" type="module"></script><script src="runtime-es5.0811dcefd377500b5b1a.js" nomodule defer></script><script src="polyfills-es5.ad81c68d1c3d7a0429f1.js" nomodule defer></script><script src="polyfills-es2015.ca64e4516afbb1b890d5.js" type="module"></script><script src="main-es2015.0a07308ac66cbea2beca.js" type="module"></script><script src="main-es5.0a07308ac66cbea2beca.js" nomodule defer></script></body>
</html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions angular-app/src/app/filter/filter.component.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body .ui-fluid .ui-autocomplete.ui-autocomplete-multiple.ui-autocomplete-dd .ui-autocomplete-multiple-container {
border-right: unset
}
2 changes: 1 addition & 1 deletion angular-app/src/app/filter/filter.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class FilterComponent implements OnInit, OnDestroy {
filterAppsMultiple(event: any): void {
this.appSubscription = this.dataService.loadApps().subscribe(
(data: Array<String>) => {
this.suggestions = data.filter(app => app.includes(event.query))
this.suggestions = data.filter(app => app.toLowerCase().includes(event.query.toLowerCase()))
}
)
}
Expand Down

0 comments on commit 2052a51

Please sign in to comment.