nonprofittechy / docassemble-ssioverpaymentwaiver

Request for Waiver of SSI Overpayment
https://docassemble.org
MIT License
2 stars 6 forks source link

Page id: ssa contact #38

Closed miabonardi closed 3 years ago

miabonardi commented 3 years ago

When user selects "I don't know" on Page id: overpayment reason:

nonprofittechy commented 3 years ago

You are right, would make more sense to make the "i don't know" text generic in both screens.

nonprofittechy commented 3 years ago
- label: |
    % if overpayment_reason == "dont_know":
    "Did you tell Social Security about the change or event that made you overpaid?"
    % else: 
    "Did you tell the Social Security Administration that ${ overpayment_reason}"
    % endif
  field: informed_ssa
miabonardi commented 3 years ago
  • label: | % if overpayment_reason == "dont_know": "Did you tell Social Security about the change or event that made you overpaid?" % else: "Did you tell the Social Security Administration that ${ overpayment_reason}" % endif field: informed_ssa

Tried to use this code to fix this issue but the first line of text is used every time regardless of the order. I have a feeling that it is reading % if overpayment_reason before getting to == "dont_know":.

miabonardi commented 3 years ago

Done