checkbox field not showing checkmark when true

I have a checkbox field that is saving an integer if checked as true. However, when I check the summary interface the checkmark is not there but it does save the value correctly.

Please help. New to appian. Thanks in advance

a!checkboxField(
label: "",
labelPosition: "ABOVE",
choiceLabels: {year(today())-2},
choiceValues: {year(today())-2},
value: if(
ri!Address_Change.'year-2',
{year(today())-2},
null
),
saveInto: a!save(
ri!Address_Change.'year-2',
if(
isnull(
save!value
),
null,
{year(today())-2}
)
),
validations: {}

)

  Discussion posts and replies are publicly visible