fix: copy the correct uuid to the clipboard

This commit is contained in:
2025-12-12 09:37:46 +01:00
parent 46db281a0a
commit fc0c9db355

View File

@@ -43,7 +43,7 @@ def build_query_items(uuids):
albert.Action( albert.Action(
id='copy', id='copy',
text='Copy uuid to clipboard', text='Copy uuid to clipboard',
callable=lambda: albert.setClipboardText(uuid) callable=lambda id=uuid: albert.setClipboardText(id)
) )
] ]
) )