From 2ca03389d2bad99e192cac38ef2cdd807640a7d4 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 24 Feb 2024 15:14:24 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9C=A0=EB=8B=88=ED=81=AC=20=EA=B2=BD?= =?UTF-8?q?=EB=A7=A4=20=ED=95=AD=EB=AA=A9=20=EB=B3=80=EA=B2=BD=EC=8B=9C=20?= =?UTF-8?q?=EA=B8=88=EC=95=A1=EC=9D=B4=20=EC=9E=90=EB=8F=99=20=EC=A1=B0?= =?UTF-8?q?=EC=A0=88=EB=90=98=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95=20-?= =?UTF-8?q?=20=EA=B5=B3=EC=9D=B4=20=EA=B8=B0=EC=A1=B4=20=EA=B0=92=EC=9D=84?= =?UTF-8?q?=20=EB=82=A8=EA=B8=B8=20=EC=9D=B4=EC=9C=A0=EA=B0=80=20=EC=97=86?= =?UTF-8?q?=EC=96=B4=EB=B3=B4=EC=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/components/AuctionUniqueItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwe/ts/components/AuctionUniqueItem.vue b/hwe/ts/components/AuctionUniqueItem.vue index 62b1b3ce..69509371 100644 --- a/hwe/ts/components/AuctionUniqueItem.vue +++ b/hwe/ts/components/AuctionUniqueItem.vue @@ -152,7 +152,7 @@ async function refreshDetail() { currentAuction.value = await SammoAPI.Auction.GetUniqueItemAuctionDetail({ auctionID }); const bidList = currentAuction.value.bidList; const highestBidAmount = Math.max(bidList[0].amount, bidList[bidList.length-1].amount); - bidAmount.value = Math.max(bidAmount.value, Math.ceil(highestBidAmount * 1.01)); + bidAmount.value = highestBidAmount * 1.01; } catch (e) { console.error(e); if (isString(e)) {