diff --git a/accessible/workspace-tree.component.js b/accessible/workspace-tree.component.js
index f0dd60916..7d5ac4486 100644
--- a/accessible/workspace-tree.component.js
+++ b/accessible/workspace-tree.component.js
@@ -63,10 +63,13 @@ blocklyApp.WorkspaceTreeComponent = ng.core
- -
-
@@ -291,6 +294,9 @@ blocklyApp.WorkspaceTreeComponent = ng.core
this.actionButtonsInfo.forEach(function(buttonInfo) {
that.idKeys.push(buttonInfo.baseIdKey, buttonInfo.baseIdKey + 'Button');
});
+ this.fieldButtonsInfo.forEach(function(buttonInfo) {
+ that.idKeys.push(buttonInfo.baseIdKey, buttonInfo.baseIdKey + 'Button');
+ });
for (var i = 0; i < this.block.inputList.length; i++) {
var inputBlock = this.block.inputList[i];
if (inputBlock.connection && !inputBlock.connection.targetBlock()) {