xydata-tools 1.0.38 → 1.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -142,8 +142,8 @@ var UriModal = function UriModal(_ref2) {
|
|
|
142
142
|
if (searchText) {
|
|
143
143
|
var searchLower = searchText.toLowerCase();
|
|
144
144
|
filteredList = uriList.filter(function (uri) {
|
|
145
|
-
var _uri$description, _uri$moduleName;
|
|
146
|
-
return ((_uri$description = uri.description) === null || _uri$description === void 0 ? void 0 : _uri$description.toLowerCase().includes(searchLower)) || ((_uri$moduleName = uri.moduleName) === null || _uri$moduleName === void 0 ? void 0 : _uri$moduleName.toLowerCase().includes(searchLower));
|
|
145
|
+
var _uri$description, _uri$moduleName, _uri$url;
|
|
146
|
+
return ((_uri$description = uri.description) === null || _uri$description === void 0 ? void 0 : _uri$description.toLowerCase().includes(searchLower)) || ((_uri$moduleName = uri.moduleName) === null || _uri$moduleName === void 0 ? void 0 : _uri$moduleName.toLowerCase().includes(searchLower)) || ((_uri$url = uri.url) === null || _uri$url === void 0 ? void 0 : _uri$url.toLowerCase().includes(searchLower));
|
|
147
147
|
});
|
|
148
148
|
}
|
|
149
149
|
|