fix: 관리자가 아닌 사용자에게 navbar에 불필요한 문자가 보이는 버그 수정 #211
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
주요 변경사항
기존에 네브바에 관리자가 아닌 계정으로 접속시 "관리자만 접근이 가능합니다." 문구가 보였습니다.
이는 이전에 저의 pr에서 해당 컴포넌트의 요구사항에 맞지 않는 수정을 해서 문제가 발행하였습니다.
네브바의 합/불 관리 페이지 버튼은 사용자의 role을 가져오는 도중, 그리고 가져온 role이 관리자가 아닌 경우에 아무런 것도 보이지 않도록 해야 한다고 생각합니다. (실제로 이와 동일한 동작(?)을 하는 네브바의 관리자 페이지 부분도 동일하게 작성되어 있습니다.)
이에 맞추어 (
isLoading
,!data
, .role !== "ROLE_OPERATION
" )인 상에서는 아무런 것도 보여주지 않도록 변경하였습니다.관리자 페이지 부분 로직
여기서도 (
isLoading
,!data
, .role !== "ROLE_OPERATION
" )인 상에서는 아무런 것도 보여주지 않습니다!이와 동일하게 동작해야하는 버튼이므로 해당 경우에 null을 반환하도록 수정하였습니다.
리뷰어에게...
관련 이슈
closes #210