Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix change availability bug #667

Merged
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