Skip to content

Commit

Permalink
Match prop order with order returned from server for proper dirty sta…
Browse files Browse the repository at this point in the history
…te managment, #10552
  • Loading branch information
chiatt authored and jacobtylerwalls committed May 15, 2024
1 parent f003954 commit 3b1c8dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arches/app/media/js/viewmodels/reference-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ define([
if (self.valueAndSelectionDiffer(self.value, selection)) {
const tileReady = selection.map(uri => {
return {
"uri": uri,
"labels": NAME_LOOKUP[uri].labels,
"listid": NAME_LOOKUP[uri]["listid"],
"labels": NAME_LOOKUP[uri].labels
"uri": uri
};
});
self.value(tileReady);
Expand Down

0 comments on commit 3b1c8dd

Please sign in to comment.