mirror of
https://ghproxy.com/https://github.com/StreakingMan/solvable-sheep-game
synced 2025-05-23 19:08:14 +08:00
fix: diy模式的图片路径
This commit is contained in:
parent
f6c25eb96a
commit
0f0072585b
|
@ -133,7 +133,8 @@ const Symbol: FC<SymbolProps> = ({ x, y, icon, isCover, status, onClick }) => {
|
|||
style={{ opacity: isCover ? 0.4 : 1 }}
|
||||
>
|
||||
{typeof icon.content === 'string' ? (
|
||||
linkReg.test(icon.content) ? (
|
||||
linkReg.test(icon.content) ||
|
||||
icon.content.startsWith('/') ? (
|
||||
/*图片地址*/
|
||||
<img src={icon.content} alt="" />
|
||||
) : (
|
||||
|
|
Loading…
Reference in New Issue
Block a user