Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public List<Value> getProperties() {

CONFIG_SECTION_SELF_REPORT,
new StringValue("question")
.setName(STEP_PROPERTY_PREFIX + ".question.name")
.setName(STEP_PROPERTY_PREFIX + "question.name")

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.goal.question.name
-> sofern du das nicht im prefix hast. sonst stimmts nicht überein

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ne das goal ist nicht im prefix. Das muss ich dann aber zu 3 properties hinzufügen

.setDescription(STEP_PROPERTY_PREFIX + "question.description")

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.goal.question.description

.setRequired(false),
new StringListValue("answers")
Expand All @@ -94,7 +94,7 @@ public List<Value> getProperties() {
))
.setRequired(false),
new BooleanValue("singleChoiceState")
.setName(STEP_PROPERTY_PREFIX + ".singleChoiceState.name")
.setName(STEP_PROPERTY_PREFIX + "singlFeChoiceState.name")

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.goal.singleChoiceState.name
-> da hat sich auch ein F eingeschlichen

.setDescription(STEP_PROPERTY_PREFIX + "singleChoiceState.description")

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.goal.singleChoiceState.description

.setRequired(false)
);
Expand Down
Loading