Showing
3 changed files
with
4 additions
and
4 deletions
| ... | ... | @@ -31,14 +31,14 @@ export const columns: BasicColumn[] = [ |
| 31 | 31 | h( |
| 32 | 32 | 'p', |
| 33 | 33 | { |
| 34 | - style: { cursor: 'pointer', color: '#377dff' }, | |
| 34 | + class: 'cursor-pointer', | |
| 35 | 35 | }, |
| 36 | 36 | `${record.alias}` |
| 37 | 37 | ), |
| 38 | 38 | h( |
| 39 | 39 | 'p', |
| 40 | 40 | { |
| 41 | - style: { cursor: 'pointer', color: '#377dff' }, | |
| 41 | + class: 'cursor-pointer text-blue-500', | |
| 42 | 42 | onClick: () => { |
| 43 | 43 | handeleCopy(`${record.name}`); |
| 44 | 44 | }, | ... | ... |
| ... | ... | @@ -138,7 +138,7 @@ const deviceTableColumn: BasicColumn[] = [ |
| 138 | 138 | }, |
| 139 | 139 | }, |
| 140 | 140 | [ |
| 141 | - h('div', { class: 'text-blue-400 truncate' }, record.alias), | |
| 141 | + h('div', { class: 'truncate' }, record.alias), | |
| 142 | 142 | h('div', { class: 'text-blue-400 truncate' }, record.name), |
| 143 | 143 | ] |
| 144 | 144 | ), | ... | ... |