Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
LilyMakesThings authored Feb 3, 2024
1 parent 744c2ac commit d5975ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/engine/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ const ArgumentTypeMap = (() => {

const FieldTypeMap = (() => {
const map = {};
map[ArgumentType.ANGLE] = "field_angle";
map[ArgumentType.NUMBER] = "field_number";
map[ArgumentType.STRING] = "field_input";
map[ArgumentType.NOTE] = "field_note";
map[ArgumentType.ANGLE] = 'field_angle';
map[ArgumentType.NUMBER] = 'field_number';
map[ArgumentType.STRING] = 'field_input';
map[ArgumentType.NOTE] = 'field_note';
return map;
})();

Expand Down

0 comments on commit d5975ba

Please sign in to comment.