This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Fixed crash when attempting to filter on only one item.
pull/223/head
David Britch
7 years ago
parent
366d968048
commit
d6a32f568e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/CatalogViewModel.cs
+ 1
- 1
src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/CatalogViewModel.cs
View File
@ -102,7 +102,7 @@ namespace eShopOnContainers.Core.ViewModels
private
async
Task
FilterAsync
(
)
{
if
(
Brand
=
=
null
&
&
Type
=
=
null
)
if
(
Brand
=
=
null
|
|
Type
=
=
null
)
{
return
;
}
Write
Preview
Loading…
Cancel
Save