Skip to content

Commit

Permalink
chore: fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
xingwanying committed Sep 25, 2024
1 parent c4538a8 commit f604234
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/app/factory/list/components/BotCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const BotCard = (props: { bot: Bot }) => {
}}
>
<Image
src="../images/debug.svg"
src="/images/debug.svg"
alt={I18N.components.BotCard.tiaoShi}
onClick={() => router.push(`/factory/edit?id=${bot.id}`)}
className="z-10 cursor-pointer"
Expand All @@ -135,7 +135,7 @@ const BotCard = (props: { bot: Bot }) => {
}}
>
<Image
src="../images/refresh.svg"
src="/images/refresh.svg"
alt={I18N.components.BotCard.gengXinZhiShi}
className="z-10 cursor-pointer"
/>
Expand Down
2 changes: 1 addition & 1 deletion client/components/BotCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const BotCard = (props: {
</div>
</div>
<div className="z-10 opacity-0 rounded-[8px] hover:opacity-100 w-full h-full backdrop-blur-xl transition-all bg-gradient-to-b from-[rgba(255,255,255,0.65)] to-white absolute flex items-center justify-center">
<Image src="./images/chat.svg" />
<Image src="/images/chat.svg" />
</div>
</CardBody>
<CardFooter className="text-small justify-between flex-col my-4 p-0 px-3 min-h-[84px]">
Expand Down

0 comments on commit f604234

Please sign in to comment.