Skip to content

Commit af0fc9f

Browse files
authored
Revert "Clap-392 UI/UX 개선 Moya"
1 parent c581303 commit af0fc9f

File tree

7 files changed

+7
-10
lines changed

7 files changed

+7
-10
lines changed

src/components/common/ModalView.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@
8181

8282
<script setup lang="ts">
8383
import { failIcon, successIcon, warningIcon } from '@/constants/iconPath'
84-
import { preventEnter } from '@/utils/preventEnter'
8584
import { onUnmounted, ref, watch } from 'vue'
8685
import CommonIcons from './CommonIcons.vue'
86+
import { preventEnter } from '@/utils/preventEnter'
8787
8888
const { isOpen, type, modelValue } = defineProps<{
8989
isOpen: boolean
@@ -116,7 +116,6 @@ watch(
116116
() => isOpen,
117117
() => {
118118
if (isOpen) {
119-
textValue.value = ''
120119
document.body.style.overflow = 'hidden'
121120
window.addEventListener('keydown', preventEnter)
122121
} else {

src/components/task-detail/TaskDetailHistory.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@
4040
</div>
4141
<div class="flex w-full flex-col items-center">
4242
<TaskDetailHistoryChat
43-
v-if="
44-
item.taskHistoryType === 'COMMENT' || item.taskHistoryType === 'TASK_TERMINATED'
45-
"
43+
v-if="item.taskHistoryType === 'COMMENT'"
4644
:history="item"
4745
:requestor-name="requestorName"
4846
:task-id="taskId" />

src/components/task-detail/TaskDetailHistoryChat.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
'flex max-w-[400px] flex-wrap px-4 py-3 text-base rounded-lg font-normal',
2222
isRequestor ? 'bg-background-2' : 'bg-primary2'
2323
]">
24-
{{ history.details.commentDetails?.comment || history.details.taskDetails?.value }}
24+
{{ history.details.commentDetails?.comment }}
2525
</p>
2626
<div
2727
:class="[

src/components/task-detail/TaskDetailRight.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="sticky top-0 w-[280px] shrink-0 flex flex-col gap-y-6 overflow-y-auto p-6 scrollbar-hide">
2+
<div class="sticky top-0 w-[280px] shrink-0 flex flex-col gap-y-6 overflow-y-auto p-6">
33
<div>
44
<p class="task-detail">작업코드</p>
55
<p class="text-sm">{{ data.taskCode || '-' }}</p>

src/components/task-detail/TaskStatusList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const rejectRequest = async () => {
9595
return
9696
}
9797
try {
98-
await axiosInstance.patch(`/api/tasks/${taskId}/terminate`, { reason: rejectReason.value })
98+
await axiosInstance.patch(`/api/tasks/${taskId}/terminate`, rejectReason)
9999
toggleModal('success')
100100
emit('update:status', 'TERMINATED')
101101
currentStatus.value = 'TERMINATED'

src/components/user-manage/UserRegistration.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
:labelName="'이메일'" />
2424
<RequestTaskInput
2525
v-model="userRegistrationForm.email"
26-
:placeholderText="'@kakaocorp.com'"
26+
:placeholderText="'@kakao.com'"
2727
:label-name="'도메인'"
2828
:is-not-required="false" />
2929
</div>

src/views/LoginView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const handleLogin = async () => {
107107
'로그인 시도 5회 초과로 계정이 정지되었습니다\n30분 후 다시 시도해주세요'
108108
} else {
109109
messageHeader.value = '일치하는 정보가 없습니다'
110-
messageBody.value = '아이디과 비밀번호를 다시 확인해주세요'
110+
messageBody.value = '닉네임과 비밀번호를 다시 확인해주세요'
111111
}
112112
isModalVisible.value = !isModalVisible.value
113113
break

0 commit comments

Comments
 (0)