Browse Source

Update index.js

pull/22065/head
liangshiwei 2 years ago
parent
commit
b56c14b327
  1. 2
      modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.js

2
modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.js

@ -112,7 +112,7 @@ var doc = doc || {};
var filteredItems = $navigation
.find('li > a')
.filter(function () {
var keywords = ($(this).data('keywords') ?? "").split(",");
var keywords = ($(this).data('keywords') || "").split(",");
var text = $(this).text();
if(text.toUpperCase().indexOf(filterText.toUpperCase()) > -1)

Loading…
Cancel
Save