Skip to content

Commit

Permalink
fix search errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dmsej108 committed Oct 11, 2024
1 parent deaecf0 commit 3bba452
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@
}
const setDockerHubSearch = async () => {
dockerHubSearchList.value = [];
try {
const response = await axios.get(baseUrl + '/search/dockerhub/' + searchKeyword.value);
Expand All @@ -314,6 +315,7 @@
}
const setArtifactHubSearch = async () => {
artifactHubSearch.value = [];
try {
const response = await axios.get(baseUrl + '/search/artifacthub/' + searchKeyword.value);
for(let i=0; i<3; i++) {
Expand Down

0 comments on commit 3bba452

Please sign in to comment.