We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e8b54 commit eea078eCopy full SHA for eea078e
src/Forms/ConfirmedPasswordField.php
@@ -164,7 +164,10 @@ public function __construct(
164
165
// has to be called in constructor because Field() isn't triggered upon saving the instance
166
if ($showOnClick) {
167
- $this->getChildren()->push($this->hiddenField = HiddenField::create("{$name}[_PasswordFieldVisible]"));
+ $this->getChildren()->push(
168
+ $this->hiddenField = HiddenField::create("{$name}[_PasswordFieldVisible]")
169
+ ->addExtraClass('no-change-track') // ignore in changetracker
170
+ );
171
}
172
173
// disable auto complete
0 commit comments