Commit 0377cf37 by Apple\Apple

🔖chore(ui): Improve Loading prompt

parent 8f938d5b
...@@ -14,7 +14,7 @@ const Loading = ({ prompt: name = '', size = 'large' }) => { ...@@ -14,7 +14,7 @@ const Loading = ({ prompt: name = '', size = 'large' }) => {
tip={null} tip={null}
/> />
<span className="whitespace-nowrap mt-2 text-center" style={{ color: 'var(--semi-color-primary)' }}> <span className="whitespace-nowrap mt-2 text-center" style={{ color: 'var(--semi-color-primary)' }}>
{name ? t('加载{{name}}中...', { name }) : t('加载中...')} {name ? t('{{name}}', { name }) : t('加载中...')}
</span> </span>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment