@bnsights/bbsf-controls 1.0.77 → 1.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,6 +5,10 @@ BBSF Controls package is part of BBSF 3 packages. It has all the form controls t
5
5
  For more info please visit [BBSF Controls documenation](https://bbsfadmin.bnsights.com/controls) or [BBSF documentation](https://bnsightsprojects.visualstudio.com/BBSF%203/_wiki/wikis/BBSF-3.wiki/65/BBSF-Documentation)
6
6
 
7
7
  # Change Log
8
+ ## 1.0.78 / 11-1-2022
9
+ ===================
10
+ * Solve Image Control Bug
11
+
8
12
  ## 1.0.77 / 11-1-2022
9
13
  ===================
10
14
  * Solve Image Control Bug
@@ -3658,8 +3658,8 @@
3658
3658
  }
3659
3659
  this.group.addControl(this.options.Name, new forms.FormControl(''));
3660
3660
  this.ImageUploadFormControl = this.group.controls[this.options.Name]; // new FormControl('',validationRules);
3661
- // if (this.options.Value != null)
3662
- // this.group.get(this.options.Name).setValue(this.options.Value);
3661
+ if (this.options.Value != null)
3662
+ this.group.get(this.options.Name).setValue(this.options.Value);
3663
3663
  if (this.options.LabelKey != null && this.options.LabelKey != '')
3664
3664
  this.options.LabelValue = this.UtilityService.getResourceValue(this.options.LabelKey);
3665
3665
  if (this.options.CustomValidation.length > 0) {