Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ export const Home = (props: HomeProps) => {
.get(`${APP_ANALYTICS_API_PREFIX}/`)
.then(async (res) => {
// Want to calculate availability going down the table
const mainVisIdStore: Record<string, string> = {};
for (let i = 0; i < res.data.length; i++) {
mainVisIdStore[res.data[i].id] = res.data[i].availability.mainVisId;
res.data[i].availability = { name: 'loading', color: '', mainVisId: '' };
}
setApplicationList(res.data);
Expand All @@ -209,7 +211,7 @@ export const Home = (props: HomeProps) => {
http,
pplService,
res.data[i],
res.data[i].availability.mainVisId,
mainVisIdStore[res.data[i].id],
() => {}
);
// Need to set state with new object to trigger re-render
Expand Down