Skip to content

Commit

Permalink
Update the registered component ids
Browse files Browse the repository at this point in the history
  • Loading branch information
kozbial committed Jun 11, 2021
1 parent 566b14e commit cd3a7ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/trashcan.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Blockly.Trashcan = function(workspace) {
* The unique id for this component.
* @type {string}
*/
this.id = Blockly.utils.genUid();
this.id = 'trashcan';

/**
* A list of XML (stored as strings) representing blocks in the trashcan.
Expand Down
2 changes: 1 addition & 1 deletion core/zoom_controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Blockly.ZoomControls = function(workspace) {
* The unique id for this component.
* @type {string}
*/
this.id = Blockly.utils.genUid();
this.id = 'zoomControls';

/**
* A handle to use to unbind the mouse down event handler for zoom reset
Expand Down

0 comments on commit cd3a7ac

Please sign in to comment.