diff --git a/HISTORY.md b/HISTORY.md
index ea031b6a..3e464351 100755
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -7,12 +7,14 @@
* hyperdyadic less / great than or equals primitives reachable via "relabel"
* **Notable Changes:**
* searching for blocks and keyboard entry now includes the contents of dropdown menus
+ * disabled dropping reporters into certain dropdowns (monadic functions, types)
* **Notable Fixes:**
* keep internal linked-list organization intact for hyperblocks
### 2020-12-01
* threads, objects: added hyperdyadic MIN and MAX primitives reachable via "relabel"
* threads, objects: added hyperdyadic less/greaterThanOrEquals prims
+* blocks: made monadic functions and data types menus static
### 2020-11-30
* threads: keep internal linked-list organization intact for hyperblocks
diff --git a/snap.html b/snap.html
index 7cc5c19e..d64d577f 100755
--- a/snap.html
+++ b/snap.html
@@ -8,7 +8,7 @@
-
+
diff --git a/src/blocks.js b/src/blocks.js
index 3006acd0..201967a5 100644
--- a/src/blocks.js
+++ b/src/blocks.js
@@ -158,7 +158,7 @@ CustomCommandBlockMorph, SymbolMorph, ToggleButtonMorph, DialMorph*/
// Global stuff ////////////////////////////////////////////////////////
-modules.blocks = '2020-November-26';
+modules.blocks = '2020-December-01';
var SyntaxElementMorph;
var BlockMorph;
@@ -566,7 +566,7 @@ SyntaxElementMorph.prototype.labelParts = {
},
'%fun': {
type: 'input',
- tags: 'read-only',
+ tags: 'read-only static',
menu: {
abs : ['abs'],
// '\u2212' : ['\u2212'], // minus-sign
@@ -668,7 +668,7 @@ SyntaxElementMorph.prototype.labelParts = {
},
'%typ': {
type: 'input',
- tags: 'read-only',
+ tags: 'read-only static',
menu: 'typesMenu'
},
'%mapValue': {