@pega/angular-sdk-overrides 0.24.8 → 0.24.9
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.
|
@@ -177,7 +177,7 @@ export class PercentageComponent implements OnInit, OnDestroy {
|
|
|
177
177
|
const actionsApi = this.pConn$?.getActionsApi();
|
|
178
178
|
const propName = (this.pConn$?.getStateProps() as any).value;
|
|
179
179
|
let value = event?.target?.value;
|
|
180
|
-
value = value
|
|
180
|
+
value = value ? value.replace(/%/g, '') : '';
|
|
181
181
|
if (this.currSep === ',') {
|
|
182
182
|
value = value.replace(/,/g, '');
|
|
183
183
|
} else {
|