Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
feat: border width 추가할 수 있게 추가 (#11)
Browse files Browse the repository at this point in the history
* feat: border width 추가할 수 있게 추가

* chore: 0.6.5

* refactor: 줄바꿈 수정
  • Loading branch information
hongsa authored Feb 15, 2022
1 parent 42afcf2 commit 8dd4417
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@payhereinc/react-native-week-view",
"version": "0.6.4",
"version": "0.6.5",
"description": "Week View Calendar for React Native",
"main": "index.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/Event/Event.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ const Event = ({
width: currentWidth,
backgroundColor: event.color,
transform: translatedByDrag.getTranslateTransform(),
borderWidth: event.color === '#ffffff' ? 1 : 0,
borderRadius: event.color === '#ffffff' ? 4 : 0,
borderWidth: event.borderWidth,
borderRadius: 8,
borderColor: event.borderColor
},
containerStyle,
Expand Down

0 comments on commit 8dd4417

Please sign in to comment.