Skip to content

Commit a8d5fc1

Browse files
committed
Fix #13: correctly use the move forward label
1 parent 41a3119 commit a8d5fc1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Activity.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ export default {
535535
if (CODERBOT_PROG_LEVEL.indexOf("basic") >= 0) {
536536
di.appendField(new Blockly.FieldImage('/static/images/blocks/move_forward.png', 32, 32, '*'));
537537
} else {
538-
di.appendField(Blockly.Msg.CODERBOT_MOVE_BACKWARD)
538+
di.appendField(Blockly.Msg.CODERBOT_MOVE_FORWARD)
539539
}
540540
this.setPreviousStatement(true);
541541
this.setNextStatement(true);

src/components/Blockly.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ export default {
818818
if (CODERBOT_PROG_LEVEL.indexOf("basic") >= 0) {
819819
di.appendField(new Blockly.FieldImage('/static/images/blocks/move_forward.png', 32, 32, '*'));
820820
} else {
821-
di.appendField(Blockly.Msg.CODERBOT_MOVE_BACKWARD)
821+
di.appendField(Blockly.Msg.CODERBOT_MOVE_FORWARD)
822822
}
823823
this.setPreviousStatement(true);
824824
this.setNextStatement(true);

0 commit comments

Comments
 (0)