Skip to content

Commit

Permalink
Merge pull request #27 from jovialcore/search-for-mobile
Browse files Browse the repository at this point in the history
Search for mobile
  • Loading branch information
danieliheonu authored Dec 30, 2023
2 parents 19002dc + 655a366 commit 2bb5915
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/header/HeaderComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="justify-content-end" id="navbarTogglerDemo02">
<ul class="navbar-nav mb-2 mb-lg-0">
<li class="nav-item">
<a href="https://github.com/jovialcore/whatcompstack-BE" target="_blank" class="nav-link">🌟 us
<a href="https://github.com/jovialcore/whatcompstack-BE?tab=readme-ov-file#-what-company-stack" target="_blank" class="nav-link">🌟 us
on Github </a>
</li>
</ul>
Expand Down
1 change: 1 addition & 0 deletions src/composables/getCompanies.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ const useGetCompanies = () => {
if (mobileLang.value.some((key) => key.toLowerCase().includes(term))) {
return true;
}


return false;
});
Expand Down
1 change: 1 addition & 0 deletions src/composables/getCompany.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const getCompany = (id) => {
be_framework.value = getStacks(company.value.stack_be_framework);

mobile_stacks.value = getStacks(company.value.stack_mobile);

} catch (err) {
company.value = null;
}
Expand Down

0 comments on commit 2bb5915

Please sign in to comment.