Add copy to column list

This commit is contained in:
ProjectInfinity
2024-04-17 17:44:10 +02:00
parent c824e32f0a
commit 5a8627c39f

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)},
];
}