mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: change to url error
This commit is contained in:
parent
2d85afe168
commit
43cafdd524
@ -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…
Reference in New Issue
Block a user