chore: update ollama model options

This commit is contained in:
jialin
2024-07-24 16:50:06 +08:00
parent 8097ba0df9
commit 729f7785f0
5 changed files with 41 additions and 60 deletions
+18 -14
View File
@@ -71,20 +71,24 @@ const DeleteModal = forwardRef((props, ref) => {
</span>
</span>
</div>
<div className={Styles['content']}>
{config.content &&
intl.formatMessage(
{
id: config.selection
? 'common.delete.confirm'
: 'common.delete.single.confirm'
},
{
type: intl.formatMessage({ id: config.content }),
name: config.name
}
)}
</div>
<div
className={Styles['content']}
dangerouslySetInnerHTML={{
__html:
config.content &&
intl.formatMessage(
{
id: config.selection
? 'common.delete.confirm'
: 'common.delete.single.confirm'
},
{
type: intl.formatMessage({ id: config.content }),
name: config.name
}
)
}}
></div>
</Modal>
);
});