Add copy to column list

This commit is contained in:
ProjectInfinity 2024-04-17 17:44:10 +02:00
parent c824e32f0a
commit 5a8627c39f
No known key found for this signature in database
GPG Key ID: 016F0A2D2EE16428

View File

@ -31,6 +31,7 @@
return [
{ text: 'Rename column', onClick: handleRenameColumn },
{ text: 'Drop column', onClick: handleDropColumn },
{ text: 'Copy name', onClick: () => navigator.clipboard.writeText(data.columnName)},
];
}