Plumsail Form Field showing value different than SharePoint Log

Hello,

I have a form with a "Status" field that is just a text field. When I open the form in Edit Mode, I have disabled that field. However, when I open the form, it is disabled, but it shows a value different than what is in the SharePoint log.

I have localStorage.clear(); at the start of my form.

Why would this be happening?

Dear @wbrunner,
That's interesting, shouldn't be anything that affects the field, unless it's set with JavaScript.

Try the following code to see what the value should be when the form renders:

fd.spRendered(() =>{
    console.log(fd.data());
    console.log(fd.field('Status').value);
});