Skip to content

Commit

Permalink
Removing the hash change on album close (#97)
Browse files Browse the repository at this point in the history
* Removing the hash change on album close

* Fixing upload artifact version
  • Loading branch information
msaperst authored Feb 26, 2025
1 parent b5aa4d3 commit d40fbfb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Upload Coverage 📊
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: API Results
path: reports
4 changes: 2 additions & 2 deletions .github/workflows/code-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Upload Coverage 📊
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ut-coverage
path: reports
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Upload Coverage 📊
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: it-coverage
path: reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Publish Result 📊
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: OWASP Dependency Check Results
path: reports
2 changes: 1 addition & 1 deletion public/js/album.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function Album(albumId, columns, totalImages) {
};

$('#album').on('hide.bs.modal', function () {
window.location.hash = "";
history.pushState("", document.title, window.location.pathname + window.location.search);
});
}

Expand Down

0 comments on commit d40fbfb

Please sign in to comment.