Skip to content

Commit 80e0caf

Browse files
Merge pull request #41 from useshortcut/amcd/fix-search-bug
2 parents c672f84 + d78e7de commit 80e0caf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"modelcontextprotocol"
1313
],
1414
"license": "MIT",
15-
"version": "0.6.0",
15+
"version": "0.6.1",
1616
"type": "module",
1717
"main": "dist/index.js",
1818
"bin": {

src/tools/epics.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ describe("EpicTools", () => {
279279
});
280280

281281
expect(searchEpicsMock.mock.calls?.[0]?.[0]).toBe(
282-
'id:1 title:"Test Epic" description:"Test Description" state:started objective:123 owner:testuser group:engineering is:archived',
282+
'id:1 title:"Test Epic" description:"Test Description" state:started objective:123 owner:testuser team:engineering is:archived',
283283
);
284284
});
285285

src/tools/utils/search.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { MemberInfo } from "@shortcut/client";
22

3-
const keyRenames = { team: "group", name: "title" } as const;
3+
const keyRenames = { name: "title" } as const;
44

55
const mapKeyName = (key: string) => {
66
const lowercaseKey = key.toLowerCase();

0 commit comments

Comments
 (0)