dmencu 0.3.52 → 0.3.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1383,12 +1383,14 @@ function BarraDeNavegacion(props:{forPk:ForPk, soloLectura:boolean, modoDirecto:
|
|
|
1383
1383
|
<Button color={b.que==forPk.formulario?"primary":"inherit"} variant="outlined"
|
|
1384
1384
|
key={`${i}-${b.que}-${b.retroceso}`}
|
|
1385
1385
|
disabled={!b.que}
|
|
1386
|
-
onClick={()=>
|
|
1386
|
+
onClick={()=>{
|
|
1387
1387
|
dispatch(
|
|
1388
1388
|
b.que=='hdr'?dispatchers.VOLVER_HDR({}):
|
|
1389
1389
|
dispatchers.VOLVER_DE_FORMULARIO({magnitudRetroceso:b.retroceso})
|
|
1390
|
-
)
|
|
1391
|
-
|
|
1390
|
+
);
|
|
1391
|
+
b.que=='hdr'?null:
|
|
1392
|
+
dispatchByPass(accion_abrir_formulario,{forPk:opciones.pilaForPk[opciones.pilaForPk.length-b.retroceso]});
|
|
1393
|
+
}}
|
|
1392
1394
|
>
|
|
1393
1395
|
<span className="abr">{b.abr}</span>
|
|
1394
1396
|
<span className="label">{b.label}</span>
|
package/package.json
CHANGED