Add indicator styles on statistical category form fields when
they are applied by a template in the Angular Holdings Editor.
Signed-off-by: Dan Briem <dbriem@wlsmail.org>
Signed-off-by: Beth Willis <willis@noblenet.org>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
if (value[+catId] !== null) {
this.statCatValues[+catId] = value[+catId];
this.statCatChanged(+catId);
+ // Indicate this value changed in the form
+ const attr = this.batchAttrs.find(attr =>
+ attr.name?.split('_').pop() === catId
+ );
+ if (attr) { attr.hasChanged = true; }
}
});
return;