mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-23 16:36:23 +00:00
fix(desktop): use repo-forked codicon (git-fork has no glyph)
The bundled @vscode/codicons font has no `git-fork` glyph (only `git-fork-private`), so the Branch menu item rendered blank. Use `repo-forked`, the actual fork icon, to match the inline GitFork action.
This commit is contained in:
parent
a0a24ba215
commit
35cdc63ca0
1 changed files with 4 additions and 2 deletions
|
|
@ -273,8 +273,10 @@ function useSessionActions({
|
|||
const workItems: ItemSpec[] = [
|
||||
spec({
|
||||
disabled: !onBranch,
|
||||
// Match the inline message action's GitFork icon (assistant-message.tsx).
|
||||
icon: 'git-fork',
|
||||
// Fork glyph to match the inline message action's GitFork icon
|
||||
// (assistant-message.tsx). NB: this codicon font has no `git-fork`
|
||||
// glyph (only `git-fork-private`); `repo-forked` is the fork icon.
|
||||
icon: 'repo-forked',
|
||||
label: r.branchFrom,
|
||||
onSelect: () => {
|
||||
triggerHaptic('selection')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue