#U4-5893 Fixed

Related Links - rearranging a link will completely remove all link content fields
This commit is contained in:
Sebastiaan Janssen
2014-11-27 13:24:23 +01:00
parent 0155a094b1
commit 9bf33f0eea

View File

@@ -128,7 +128,7 @@
function getElementIndexByUrl(url) {
for (var i = 0; i < $scope.model.value.length; i++) {
if ($scope.model.value[i].link === url) {
if ($scope.model.value[i].link == url) {
return i;
}
}