Skip to content

Commit b240d5f

Browse files
committedApr 2, 2024
- fixed a bug which called the last pre-pop url when more than one behaviour was configured
1 parent d8f948d commit b240d5f

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed
 

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ plugins {
1818
}
1919

2020

21-
version "6.2-SNAPSHOT"
21+
version "6.2-SPECIES-SNAPSHOT"
2222
group "org.grails.plugins"
2323

2424
apply plugin:"eclipse"

‎grails-app/assets/javascripts/forms-knockout-bindings.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -1230,9 +1230,7 @@
12301230
'init': function (element, valueAccessor, allBindings, viewModel, bindingContext) {
12311231
var dataModelItem = valueAccessor();
12321232
var behaviours = dataModelItem.get('behaviour');
1233-
for (var i = 0; i < behaviours.length; i++) {
1234-
var behaviour = behaviours[i];
1235-
1233+
behaviours && behaviours.forEach(function(behaviour) {
12361234
if (behaviour.type == 'pre_populate') {
12371235
var config = behaviour.config;
12381236
var dataLoaderContext = dataModelItem.context;
@@ -1295,8 +1293,7 @@
12951293
}); // This is a computed rather than a pureComputed as it has a side effect.
12961294
});
12971295
}
1298-
}
1299-
1296+
});
13001297
}
13011298
};
13021299

0 commit comments

Comments
 (0)