Skip to content

Commit 77928d9

Browse files
committed
Fixed issue with search show all props hanging, when using other than default contentsource #87, version update, ready to publish
1 parent 87fcaba commit 77928d9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sp-editor",
3-
"version": "7.5.2",
3+
"version": "7.5.3",
44
"private": true,
55
"homepage": ".",
66
"dependencies": {

public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SP Editor",
33
"homepage_url": "https://microsoftedge.microsoft.com/addons/detail/affnnhcbfmcbbdlcadgkdbfafigmjdkk",
4-
"version": "7.5.2",
4+
"version": "7.5.3",
55
"description": "Create and update SharePoint Online/SP2013/SP2016/SP2019 css/js files, inject files to web, manage web/list properties, list Webhook",
66
"manifest_version": 3,
77
"devtools_page": "devtools.html",

src/pages/search/components/searchresults.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { setSearchResults } from '../../../store/search/actions';
2929
import { MessageBarColors } from '../../../store/home/types';
3030

3131
const SearchResults = () => {
32-
const { items, groups: rootGroups, searchResults } = useSelector((state: IRootState) => state.search);
32+
const { items, groups: rootGroups, searchResults, searchQuery } = useSelector((state: IRootState) => state.search);
3333
const [groups, setGroups] = useState(rootGroups);
3434

3535
useEffect(() => {
@@ -275,7 +275,7 @@ const SearchResults = () => {
275275
tabId: chrome.devtools.inspectedWindow.tabId,
276276
},
277277
world: 'MAIN',
278-
args: [props?.group?.key, null, chrome.runtime.getURL('')],
278+
args: [props?.group?.key, searchQuery.SourceId, chrome.runtime.getURL('')],
279279
func: allprops,
280280
})
281281
.then((injectionResults) => {

0 commit comments

Comments
 (0)