fix: model list not refresh

This commit is contained in:
jialin
2024-07-12 16:17:47 +08:00
parent d839464a05
commit 0a0b96735c
13 changed files with 63 additions and 35 deletions
+1
View File
@@ -6,6 +6,7 @@
.img {
margin-top: 16px;
margin-bottom: 30px;
text-align: center;
height: 30px;
+8 -3
View File
@@ -13,9 +13,6 @@ const VersionInfo: React.FC<{ intl: any }> = ({ intl }) => {
<div className="img">
<img src={Logo} alt="logo" />
</div>
<div className="title">
{intl.formatMessage({ id: 'common.footer.version.title' })}
</div>
<div>
<div className="ver">
<span className="label">
@@ -36,4 +33,12 @@ const VersionInfo: React.FC<{ intl: any }> = ({ intl }) => {
);
};
export const modalConfig = {
icon: null,
centered: false,
maskClosable: true,
footer: null,
width: 400
};
export default VersionInfo;