mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 06:37:14 -04:00
fix: change to url error
This commit is contained in:
parent
2d85afe168
commit
43cafdd524
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ export const BoardUrlCell = ({
|
|||
|
||||
return (
|
||||
<>
|
||||
<a className={'text-main-accent hover:underline'} href={(data as URLCellDataPB).url || ''} target={'_blank'}>
|
||||
{(data as URLCellDataPB).content || ''}
|
||||
<a className={'text-main-accent hover:underline'} href={(data as URLCellDataPB)?.url || ''} target={'_blank'}>
|
||||
{(data as URLCellDataPB)?.content || ''}
|
||||
</a>
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue