Skip to content

Commit 4682bc0

Browse files
committed
🔀 [fix] : conflict resolved
2 parents 05fd9e2 + eba3594 commit 4682bc0

File tree

7 files changed

+7
-25
lines changed

7 files changed

+7
-25
lines changed

.github/workflows/create-jira-bug-issue.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -74,24 +74,9 @@ jobs:
7474
- name: Log created issue
7575
run: echo "Jira Issue ${{ steps.issue-parser.outputs.parentKey }}/${{ steps.create.outputs.issue }} was created"
7676

77-
- name: Checkout release code
78-
uses: actions/checkout@v4
79-
with:
80-
ref: release
81-
token: ${{ secrets.PAT_TOKEN }}
82-
83-
- name: Create branch with Ticket number
84-
run: |
85-
git config user.name github-actions
86-
git config user.email [email protected]
87-
git checkout -b ${{ steps.create.outputs.issue }}
88-
git push origin ${{ steps.create.outputs.issue }}
89-
env:
90-
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
91-
9277
- name: Update issue title
9378
uses: actions-cool/issues-helper@v3
9479
with:
9580
actions: "update-issue"
9681
token: ${{ secrets.PAT_TOKEN }}
97-
title: "${{ steps.create.outputs.issue }} ${{ github.event.issue.title }}"
82+
title: "${{ steps.create.outputs.issue }} ${{ github.event.issue.title }}"

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/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)