Text fields in Interface intermittently saving user input

Hi!

In the Appian Designer, we have interfaces with text fields that save into rule inputs or local variables.

When entering in data into each of these text fields, the data is only sometimes saved in the rule inputs or the local variables.

Why is the user input not saving all of the time?

Has anyone encountered this issue before?

Below is an example with four text fields. Text1 and Text2 save into rule inputs ri!text1 and ri!text2 both of type text. Text3 and Text4 save into local!text3 and local!text4. User input is not saved every time the value changes.

a!localVariables(
  local!text3,
  local!text4,
{
  a!textField(
    label: "Text1",
    labelPosition: "ABOVE",
    value: ri!text1,
    saveInto: {ri!text1},
    refreshAfter: "UNFOCUS",
    validations: {}
  ),
  a!textField(
    label: "Text2",
    labelPosition: "ABOVE",
    value: ri!text2,
    saveInto: {ri!text2},
    refreshAfter: "UNFOCUS",
    validations: {}
  ),
  a!textField(
    label: "Text3",
    labelPosition: "ABOVE",
    value: local!text3,
    saveInto: {local!text3},
    refreshAfter: "UNFOCUS",
    validations: {}
  ),
  a!textField(
    label: "Text4",
    labelPosition: "ABOVE",
    value: local!text4,
    saveInto: {local!text4},
    refreshAfter: "UNFOCUS",
    validations: {}
  )
}
)

  Discussion posts and replies are publicly visible