Skip to content

Commit

Permalink
fix: fix template extension
Browse files Browse the repository at this point in the history
Signed-off-by: Dale Lane <[email protected]>
  • Loading branch information
dalelane committed Mar 4, 2023
1 parent 6e9fd6c commit ddca6ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions your-scratch-extension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class Scratch3YourExtension {
arguments: {
MY_NUMBER: {
// default value before the user sets something
default: 123,
defaultValue: 123,

// type/shape of the parameter - choose from:
// ArgumentType.ANGLE - numeric value with an angle picker
Expand All @@ -63,7 +63,7 @@ class Scratch3YourExtension {
},
MY_STRING: {
// default value before the user sets something
default: 'hello',
defaultValue: 'hello',

// type/shape of the parameter - choose from:
// ArgumentType.ANGLE - numeric value with an angle picker
Expand Down

0 comments on commit ddca6ce

Please sign in to comment.