mirror of https://gitee.com/answerdev/answer.git
fix: delete no used text
This commit is contained in:
parent
152e819a2b
commit
97f959dfd4
|
@ -187,11 +187,7 @@ const useReportModal = (callback?: () => void) => {
|
||||||
}
|
}
|
||||||
value={content.value}
|
value={content.value}
|
||||||
isInvalid={content.isInvalid}
|
isInvalid={content.isInvalid}
|
||||||
placeholder={
|
placeholder={item.placeholder}
|
||||||
item.content_type === 'text'
|
|
||||||
? t('input_placeholder')
|
|
||||||
: t('textarea_placeholder')
|
|
||||||
}
|
|
||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
setContent({
|
setContent({
|
||||||
value: e.target.value,
|
value: e.target.value,
|
||||||
|
|
|
@ -199,9 +199,7 @@
|
||||||
},
|
},
|
||||||
"msg": {
|
"msg": {
|
||||||
"empty": "Please select a reason."
|
"empty": "Please select a reason."
|
||||||
},
|
}
|
||||||
"input_placeholder": "Enter the existing question link",
|
|
||||||
"textarea_placeholder": "Let us know specifically what you are concerned about"
|
|
||||||
},
|
},
|
||||||
"tag_modal": {
|
"tag_modal": {
|
||||||
"title": "Create New Tag",
|
"title": "Create New Tag",
|
||||||
|
|
Loading…
Reference in New Issue