fix: better handling of larger instances for ExportModal (#6559)

This commit is contained in:
Calum H.
2026-06-30 00:51:25 +02:00
committed by GitHub
parent c56ce6c9ee
commit ed7792097d
3 changed files with 116 additions and 73 deletions
@@ -676,7 +676,7 @@ const handleOptionsClick = async (args: { option: string; item: unknown }) => {
break
case 'copy_path': {
if (instance.value) {
const fullPath = await get_full_path(instance.value?.path)
const fullPath = await get_full_path(instance.value.id)
await navigator.clipboard.writeText(fullPath)
}
break