Skip to content

Commit

Permalink
upgrade selenium (#1531), add read-only ajax call delay (#1542)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Jan 16, 2025
1 parent 28e8abf commit 8b38fe9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion projectroles/static/projectroles/js/projectroles.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,8 @@ $(document).ready(function () {
var readOnlyAlert = $(document).find('#sodar-alert-site-read-only');
if (readOnlyAlert) {
var url = readOnlyAlert.attr('data-url');
updateReadOnlyAlert(url, readOnlyAlert);
setTimeout(function() {
updateReadOnlyAlert(url, readOnlyAlert);
}, 5000)
}
});
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pytest-django==4.8.0
pytest-sugar==1.0.0

# Selenium for UI testing
selenium==4.18.1
selenium==4.27.1

# Tblib for tracebacks
tblib==3.0.0
Expand Down

0 comments on commit 8b38fe9

Please sign in to comment.