fix : ... 말줄임표 표현 추가

This commit is contained in:
Yesol Choi
2025-06-02 14:44:12 +09:00
parent 24023b258d
commit 9ac67868d0

View File

@@ -94,7 +94,7 @@ function getPriceDetail(){
} }
const getSliceTitle = (value) => { const getSliceTitle = (value) => {
return value.substring(0,50) // todo return value.length > 50 ? value.slice(0, 50) + "....." : value
} }
watch(currentPage, (newParams) => { watch(currentPage, (newParams) => {