Commit bbe7496d6eb6ec0fe23ba02b64ceefc95397f70f
1 parent
9750bfa820
Exists in
develop
uppercase titulo de producto en carrito
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
src/app/modules/carrito/carrito.component.html
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | onerror="this.src='assets/img/image-not-found.jpg'"> |
40 | 40 | <div class="row mx-0 h-100 h-md-45"> |
41 | 41 | <p class="col text-primary text-truncate align-self-center"> |
42 | - <small>{{articulo.DetArt}}</small> | |
42 | + <small>{{articulo.DetArt | uppercase }}</small> | |
43 | 43 | </p> |
44 | 44 | </div> |
45 | 45 | </div> |
src/app/modules/seleccion-articulos/seleccion-articulos.component.html
... | ... | @@ -102,7 +102,7 @@ |
102 | 102 | <p |
103 | 103 | [ngClass]="{'text-primary': articulo.PRO, 'text-secondary': !articulo.PRO}" |
104 | 104 | class="col-12 px-1 h6 h-auto text-center min-h-60"> |
105 | - {{articulo.DetArt | uppercase }} | |
105 | + {{articulo.DetArt | uppercase}} | |
106 | 106 | </p> |
107 | 107 | <p class="col-12 px-1 h-auto text-center line-height-sm min-h-50"> |
108 | 108 | <small>{{articulo.DET_LAR}}</small> |
... | ... | @@ -194,7 +194,7 @@ |
194 | 194 | src="{{urlImagenes}}{{articulo.imagenes[0].imagen}}" |
195 | 195 | onerror="this.src='assets/img/image-not-found.jpg'"> |
196 | 196 | <p class="d-block mt-auto text-center text-primary text-truncate"> |
197 | - <small>{{articulo.DetArt}}</small> | |
197 | + <small>{{articulo.DetArt | uppercase}}</small> | |
198 | 198 | </p> |
199 | 199 | </div> |
200 | 200 | </div> |