From e997330085edd26b57dd254ae4622bb6186c4d40 Mon Sep 17 00:00:00 2001 From: kozbial Date: Thu, 22 Jul 2021 10:24:42 -0700 Subject: [PATCH] Fix require order in core/field_label.js --- core/field_label.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/field_label.js b/core/field_label.js index 8d23bbb18..822d476ab 100644 --- a/core/field_label.js +++ b/core/field_label.js @@ -15,8 +15,8 @@ goog.module('Blockly.FieldLabel'); goog.module.declareLegacyNamespace(); const Field = goog.require('Blockly.Field'); -const fieldRegistry = goog.require('Blockly.fieldRegistry'); const dom = goog.require('Blockly.utils.dom'); +const fieldRegistry = goog.require('Blockly.fieldRegistry'); const {inherits} = goog.require('Blockly.utils.object'); const {replaceMessageReferences} = goog.require('Blockly.utils');