Sfoglia il codice sorgente

fix checkbox in proof

master
Alex Cheung 1 anno fa
parent
commit
4f45f5111a
1 ha cambiato i file con 12 aggiunte e 19 eliminazioni
  1. +12
    -19
      src/pages/Proof/Reply_Public/ProofForm.js

+ 12
- 19
src/pages/Proof/Reply_Public/ProofForm.js Vedi File

@@ -311,15 +311,12 @@ const FormPanel = ({ formData }) => {
</tr>
<tr>
<td style={tabelStyle}>
{isOverDnReviseDeadline() ?
<></> :
<Checkbox
checked={paymentMethod == "demandNote"}
onChange={() => {
set_paymentMethod("demandNote")
}}
/>
}
<Checkbox
checked={paymentMethod == "demandNote"}
onChange={() => {
set_paymentMethod("demandNote")
}}
/>
</td>
<td style={tabelStyle}><FormattedMessage id="payDn" /></td>
<td style={tabelStyle}>
@@ -344,16 +341,12 @@ const FormPanel = ({ formData }) => {
</tr>
<tr>
<td style={tabelStyle}>
{
isOverNpgoReviseDeadline() ?
<></> :
<Checkbox
checked={paymentMethod == "office"}
onChange={() => {
set_paymentMethod("office")
}}
/>
}
<Checkbox
checked={paymentMethod == "office"}
onChange={() => {
set_paymentMethod("office")
}}
/>
</td>
<td style={tabelStyle}><FormattedMessage id="payNPGO" /></td>
<td style={tabelStyle}>


Caricamento…
Annulla
Salva