We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://rxtip.kr/rx_tip/23337
callback 함수에서
var count = getVoteCount + appliedCount
기존의 추천수와 변경된 추천수를 합산해 버리면서 기존에 추천이 있는 상태에서 추가로 추천 등의 액션이 생기면 기존 추천등의 수와 합산된 값이 표시됩니다.
var count = appliedCount
로 바꿔야 할 것 같습니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://rxtip.kr/rx_tip/23337
callback 함수에서
var count = getVoteCount + appliedCount
기존의 추천수와 변경된 추천수를 합산해 버리면서 기존에 추천이 있는 상태에서 추가로 추천 등의 액션이 생기면 기존 추천등의 수와 합산된 값이 표시됩니다.
var count = appliedCount
로 바꿔야 할 것 같습니다.
The text was updated successfully, but these errors were encountered: