We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8862eea commit 996ef37Copy full SHA for 996ef37
2 files changed
plugins/field-colour/package.json
@@ -48,7 +48,7 @@
48
"typescript": "^5.4.5"
49
},
50
"peerDependencies": {
51
- "blockly": "^11.0.0"
+ "blockly": "^12.0.0"
52
53
"publishConfig": {
54
"access": "public",
plugins/field-colour/src/field_colour.ts
@@ -209,7 +209,7 @@ export class FieldColour extends Blockly.Field<string> {
209
*
210
* @returns True if this field should take up the full block. False otherwise.
211
*/
212
- protected isFullBlockField(): boolean {
+ override isFullBlockField(): boolean {
213
const block = this.getSourceBlock();
214
if (!block) throw new Blockly.UnattachedFieldError();
215
0 commit comments