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