Skip to content

Commit

Permalink
Fix keyword links
Browse files Browse the repository at this point in the history
  • Loading branch information
Shehan committed Mar 28, 2021
1 parent 26b9064 commit a54290c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docerina-ui/src/component/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Layout = (props) => {
}

let isLocal = location.hostname == null || location.hostname == "localhost" || location.hostname == "";
let searchBoxText = props.pageType == "packageIndex" || props.pageType == "builtin" ? "Search in distribution..." : "Search in " + props.package.name + " package...";
let searchBoxText = props.pageType == "packageIndex" || props.pageType == "builtin" || props.pageType == "keyword" ? "Search in distribution..." : "Search in " + props.package.name + " package...";

function toggleMenu() {
setVisibility(!visibility);
Expand Down

0 comments on commit a54290c

Please sign in to comment.