Skip to content

Commit

Permalink
Merge pull request #6233 from HohyunKim-kr/development
Browse files Browse the repository at this point in the history
fix: 6099
  • Loading branch information
sonohoshi authored Oct 26, 2024
2 parents 2a22862 + 5f6c727 commit 4e35b38
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,7 @@ public void Show(
_callback = callback;
itemImage.sprite = itemIcon;
itemNameText.text = itemName;
var split = itemCount.Split('.');
itemCountText.text = L10nManager.Localize("UI_COUNT_FORMAT", split[0]);
itemCountText.text = L10nManager.Localize("UI_COUNT_FORMAT", itemCount);
contentText.text = content;
actionButtonText.text = buttonText;
infoText.infoText.gameObject.SetActive(infoText.infoText.text != string.Empty);
Expand Down

0 comments on commit 4e35b38

Please sign in to comment.