Debugger metadata removed

Debugger metadata removed
This commit is contained in:
axeleron007 2021-06-10 18:43:22 +03:00
parent a886fab9b5
commit 57461a4e94
4 changed files with 2 additions and 4 deletions

View file

@ -46,7 +46,7 @@ export class ElsaCheckListProperty {
}
render() {
debugger
const propertyDescriptor = this.propertyDescriptor;
const propertyModel = this.propertyModel;
const fieldId = propertyDescriptor.name;

View file

@ -33,7 +33,7 @@ export class ElsaDropdownProperty {
}
render() {
debugger
const propertyDescriptor = this.propertyDescriptor;
const propertyModel = this.propertyModel;
const propertyName = propertyDescriptor.name;

View file

@ -19,7 +19,6 @@ export class ElsaRadioListProperty {
items: any[];
async componentWillLoad() {
debugger
const defaultSyntax = this.propertyDescriptor.defaultSyntax || SyntaxNames.Literal;
this.currentValue = this.propertyModel.expressions[defaultSyntax] || null;
}

View file

@ -18,7 +18,6 @@ export class ElsaSwitchCasesProperty {
syntaxSwitchCount: number = 0;
async componentWillLoad() {
debugger
const propertyModel = this.propertyModel;
const casesJson = propertyModel.expressions['Switch']
this.cases = parseJson(casesJson) || [];