Skip to content

Commit

Permalink
Merge branch 'main' into refactor/WO_n_PD/all
Browse files Browse the repository at this point in the history
  • Loading branch information
catnine11 committed Jan 3, 2025
2 parents 8bed150 + 7ecc5d5 commit b412126
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SCM/frontend/src/components/common/Chatbot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const fetchChatbot = async () => {
// ์งˆ๋ฌธ์ธ์ง€ ๋‹ต๋ณ€์ธ์ง€ ์ฒดํฌ
const canQuestion = computed(() => {
// items ๋ฐฐ์—ด์˜ ๋งˆ์ง€๋ง‰ role์ด 'model'์ธ์ง€ ํ™•์ธ
return items.value.length > 0 && items.value[items.value.length - 1].role === 'model';
return items.value.length === 0 || (items.value.length > 0 && items.value[items.value.length - 1].role === 'model');
});
// ์งˆ๋ฌธ์€ ๋‹ต๋ณ€์ดํ›„์—๋งŒ ๋‹ค์‹œ ํ•  ์ˆ˜ ์žˆ์Œ
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const itemDelete = async (seq) => {
}
const shippingSlipRegister = async (seq) => {
const result = await sConfirm("์ถœํ•˜์ „ํ‘œ๋ฅผ ๋“ฑ๋กํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?");
const result = confirm("์ถœํ•˜์ „ํ‘œ๋ฅผ ๋“ฑ๋กํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?");
if (result) {
emit('shippingSlipRegisterEvent', seq);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import SalesOrderSituation from '@/components/salesOrder/SalesOrderSituation.vue
</script>

<template>
<h4 class="title">์˜์—…๊ด€๋ฆฌ > ์ฃผ๋ฌธ์„œ ํ˜„ํ™ฉํ™ฉ</h4>
<h4 class="title">์˜์—…๊ด€๋ฆฌ > ์ฃผ๋ฌธ์„œ ํ˜„ํ™ฉ</h4>
<SalesOrderSituation />
</template>

Expand Down

0 comments on commit b412126

Please sign in to comment.