(filePath: string)
| 862 | |
| 863 | // Context menu handlers |
| 864 | const handleCopyPath = (filePath: string) => { |
| 865 | const absolutePath = `${worktreePath}/${filePath}`; |
| 866 | navigator.clipboard.writeText(absolutePath); |
| 867 | }; |
| 868 | |
| 869 | const handleCopyRelativePath = (filePath: string) => { |
| 870 | navigator.clipboard.writeText(filePath); |