chore: update the llamabox backend tips

This commit is contained in:
jialin
2025-03-12 18:40:10 +08:00
parent fc0899d9d3
commit b31099c94d
8 changed files with 31 additions and 12 deletions
+10 -2
View File
@@ -239,9 +239,17 @@ const AddModal: React.FC<AddModalProps> = (props) => {
{warningStatus.show && (
<AlertBlockInfo
ellipsis={false}
message={intl.formatMessage({ id: warningStatus.message })}
message={
<span
dangerouslySetInnerHTML={{
__html: intl.formatMessage({
id: warningStatus.message
})
}}
></span>
}
title={intl.formatMessage({
id: 'common.text.warning'
id: 'common.text.tips'
})}
type="warning"
></AlertBlockInfo>
+10 -2
View File
@@ -425,9 +425,17 @@ const UpdateModal: React.FC<AddModalProps> = (props) => {
{warningStatus.show && (
<AlertBlockInfo
ellipsis={false}
message={intl.formatMessage({ id: warningStatus.message })}
message={
<span
dangerouslySetInnerHTML={{
__html: intl.formatMessage({
id: warningStatus.message
})
}}
></span>
}
title={intl.formatMessage({
id: 'common.text.warning'
id: 'common.text.tips'
})}
type="warning"
></AlertBlockInfo>