File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## in development:
4
4
5
+ ## 10.2.4:
6
+ * ** Notable Fixes:**
7
+ * fixed a variadic input slot arrow layout bug
8
+
5
9
## 10.2.3:
6
10
* ** New Features:**
7
11
* expose a copy of the custom block as "caller" to input slot reaction scripts inside custom block definitions
Original file line number Diff line number Diff line change @@ -14310,7 +14310,7 @@ MultiArgMorph.prototype.fixArrowsLayout = function () {
14310
14310
label . hide ( ) ;
14311
14311
}
14312
14312
leftArrow . hide ( ) ;
14313
- if ( this . minInputs === this . maxInputs ) {
14313
+ if ( this . minInputs && this . minInputs === this . maxInputs ) {
14314
14314
rightArrow . hide ( ) ;
14315
14315
}
14316
14316
if ( this . isStatic ) {
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ modules.gui = '2024-November-12';
91
91
92
92
// Declarations
93
93
94
- var SnapVersion = '10.2.3 ' ;
94
+ var SnapVersion = '10.2.4 ' ;
95
95
96
96
var IDE_Morph ;
97
97
var ProjectDialogMorph ;
Original file line number Diff line number Diff line change 1
1
/*global self, caches*/
2
2
/*jshint esversion: 6*/
3
- var snapVersion = '10.2.3 ' ,
3
+ var snapVersion = '10.2.4 ' ,
4
4
cacheName = `snap-pwa-${ snapVersion } ` ,
5
5
filesToCache = [
6
6
'snap.html' ,
You can’t perform that action at this time.
0 commit comments