fix: init cluster id when deploy model

This commit is contained in:
jialin
2025-12-03 19:18:07 +08:00
parent d8f1e95e1a
commit 7355be9e3a
9 changed files with 38 additions and 28 deletions
@@ -12,10 +12,11 @@
.note-info {
margin-left: 4px;
display: flex;
align-items: center;
}
.star {
position: relative;
top: 2px;
font-size: 0.7rem;
}
}
@@ -14,7 +14,7 @@ const NoteInfo: React.FC<NoteInfoProps> = (props) => {
if (!label) return null;
const renderRequiredStar = required ? (
<span className="star" style={{ color: 'red' }}>
*
</span>
) : null;