Showing
1 changed file
with
3 additions
and
0 deletions
| ... | ... | @@ -55,7 +55,9 @@ export const topicTableColumn: BasicColumn[] = [ |
| 55 | 55 | customRender: ({ text }: { text: any }) => { |
| 56 | 56 | return h( |
| 57 | 57 | 'span', |
| 58 | + | |
| 58 | 59 | { |
| 60 | + style: { cursor: 'pointer' }, | |
| 59 | 61 | onClick: () => { |
| 60 | 62 | handeleCopy(text); |
| 61 | 63 | }, |
| ... | ... | @@ -73,6 +75,7 @@ export const topicTableColumn: BasicColumn[] = [ |
| 73 | 75 | return h( |
| 74 | 76 | 'span', |
| 75 | 77 | { |
| 78 | + style: { cursor: 'pointer' }, | |
| 76 | 79 | onClick: () => { |
| 77 | 80 | handeleCopy(text); |
| 78 | 81 | }, | ... | ... |