Skip to content

Commit c5f991b

Browse files
committed
Use SubmissionsService's getAllPickListAttributes() rather than getAllListAttributes() - there are now 2 APIs (though they return identical data) to allow permissions to be applied differently to each
1 parent 440b3e1 commit c5f991b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fng-ui-select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
} else if (valueCache[id]) {
7979
return $q.resolve({ data: { list: valueCache[id] }}); // already cached
8080
} else {
81-
return SubmissionsService.getListAttributes(formSchema.ref, id); // need to look it up
81+
return SubmissionsService.getAllPickListAttributes(formSchema.ref, id); // need to look it up
8282
}
8383
});
8484
// TODO: no error handling here

0 commit comments

Comments
 (0)