We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23323fc commit a9c651fCopy full SHA for a9c651f
README.md
@@ -48,5 +48,5 @@
48
- [X] Carrinho
49
- [x] API Gateway / BFF - Compras
50
- [X] Aplicação de Voucher
51
-- [ ] Pedidos
+- [X] Pedidos
52
- [ ] Pagamentos
src/web/JSE.WebApp.MVC/Views/Catalogo/Index.cshtml
@@ -10,7 +10,7 @@
10
11
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
12
@{
13
- foreach (var produto in Model.OrderBy(p => p.Nome))
+ foreach (var produto in Model.Where(p => p.Ativo).OrderBy(p => p.Nome))
14
{
15
16
<div class="col">
0 commit comments