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

Refresh page after full check #670

Merged
merged 1 commit into from
Dec 12, 2018
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions anitya/templates/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ <h3 class="panel-title">
output = res.error;
}
$('#version_info').html("Latest versions: " + output);
window.location.reload(false);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just out curiosity why is this needed ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a button on the page. If you click on it, it will do a regular check for new versions. This could change project in the database, but the page will still have old information. It's confusing for the user that used this button.

}
$(btn).show(); $(btn + "-spinner").hide();
},
Expand Down
1 change: 1 addition & 0 deletions news/PR670.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Refresh page after full check