Skip to content

Commit

Permalink
chore(links fixtures): update link_tool tip property.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMcIntosh committed Dec 8, 2024
1 parent 77f639c commit 0bd2a12
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/__fixtures__/chat_links_response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,19 @@ export const STUB_LINKS_FOR_CHAT_RESPONSE: LinksForChatResponse = {
text: "Save and return",
action: "patch-all",
goto: "SETTINGS:/path/to/config/file.yaml",
link_tooltip: "",
},
{
text: "Can you fix it?",
action: "follow-up",
link_tooltip: "a nice tool tip message",
},
{ text: 'git commit -m "message"', action: "commit", link_tooltip: "" },
{ text: "Save and return", goto: "SETTINGS:postgres", link_tooltip: "" },
{
text: "Investigate Project",
action: "summarize-project",
link_tooltip: "",
},
{ text: "Can you fix it?", action: "follow-up" },
{ text: 'git commit -m "message"', action: "commit" },
{ text: "Save and return", goto: "SETTINGS:postgres" },
{ text: "Investigate Project", action: "summarize-project" },
],
};

0 comments on commit 0bd2a12

Please sign in to comment.