Fix list zones updated at same time

In case multiple zones have the same update timestamp (updated_at) the
UI did not show any zone and a JS console listed an error
"Error: [ngRepeat:dupes] Duplicates in a repeater are not allowed."
To fix it addTimestampIds needs to get the correct parameter order,
i.e. pass the name of the ID column before the timestamp column name.

Closes-Bug: 1734601

Change-Id: Ib91f873e8f21b71a71b1684317db276b72ae8014
(cherry picked from commit c6d53e4f8a)
This commit is contained in:
Ingo Fischer 2019-10-09 11:37:54 +02:00 committed by Keith Berger
parent f0e33a7de4
commit 51a44589c2
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@
// listFunctions are expected to return data in "items"
response.data.items = response.data.zones;
util.addTimestampIds(response.data.items, 'updated_at');
util.addTimestampIds(response.data.items, 'id', 'updated_at');
return response;
});