Commit 9de0f5d61ea496e3d14a09f557626e919712c0cf
Exists in
develop
Merge branch 'develop' into 'develop'
Fix Ruta del qr See merge request !74
Showing
2 changed files
Show diff stats
src/app/modules/pago-electronico/pago-electronico.component.ts
... | ... | @@ -9,7 +9,7 @@ import { APP_SETTINGS } from 'src/etc/AppSettings'; |
9 | 9 | styleUrls: ['./pago-electronico.component.scss'] |
10 | 10 | }) |
11 | 11 | export class PagoElectronicoComponent implements OnInit { |
12 | - urlQr = `${APP_SETTINGS.apiDeboSuite}/qr/${APP_SETTINGS.numeroPlanilla}/${APP_SETTINGS.codigoP}/tienda/${APP_SETTINGS.terminal}`; | |
12 | + urlQr = `${APP_SETTINGS.apiDeboSuite}/qr/${APP_SETTINGS.deploy}/${APP_SETTINGS.codigoP}/tienda/${APP_SETTINGS.terminal}`; | |
13 | 13 | |
14 | 14 | constructor( |
15 | 15 | private articuloService: ArticuloService, |
src/app/shared/sinonimo/sinonimo.component.html
... | ... | @@ -4,10 +4,11 @@ |
4 | 4 | <div class="col-6 text-right"> |
5 | 5 | <p *ngFor="let s of sinonimos; let i = index"> |
6 | 6 | <span |
7 | - class="pr-2 btn-effect" | |
7 | + class="btn-effect" | |
8 | 8 | (click)="scrollTo(i)"> |
9 | - Ir a opción {{i+1}}</span> | |
10 | - <i class="far fa-hand-point-left"></i> | |
9 | + Ir a opción {{i+1}} | |
10 | + <i class="far fa-hand-point-left"></i> | |
11 | + </span> | |
11 | 12 | </p> |
12 | 13 | </div> |
13 | 14 | </div> |