Skip to content

Commit c1c9bd3

Browse files
committed
♻️ [refactor] : 코드 포매팅
1 parent 58c1025 commit c1c9bd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/task-detail/TaskDetailHistoryInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import { ref } from 'vue'
3535
import CommonIcons from '../common/CommonIcons.vue'
3636
3737
const { history } = defineProps<{ history: TaskDetailHistoryProps[] }>()
38-
const isPossible = ref(history.length == 0)
38+
const isPossible = ref(history.length === 0)
3939
const placeHolderText = ref(isPossible?.value ? '텍스트를 입력' : '요청 승인 후 작성할 수 있습니다')
4040
4141
const handleFileUpload = (event: Event) => {

src/components/task-management/DivisionManagementLine.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
? 'text-disabled w-[21px]'
5151
: 'text-red-1 w-[21px]'
5252
">
53-
{{ isEdit&& editValue.divisionId === division.divisionId ? '취소' : '삭제' }}
53+
{{ isEdit && editValue.divisionId === division.divisionId ? '취소' : '삭제' }}
5454
</button>
5555
</div>
5656
</div>

0 commit comments

Comments
 (0)