fixed: 新闻编辑无法确定问题

This commit is contained in:
LittleBoy 2024-12-23 22:04:38 +08:00
parent 7bf1378e90
commit 91c7563cc6

View File

@ -144,7 +144,7 @@ export default function ArticleEditModal(props: Props) {
<div className="text-lg flex gap-10 ">
{props.type == 'news' ? <button className="text-gray-400 hover:text-gray-800"></button> : null}
<button className="text-gray-400 hover:text-gray-800" onClick={() => props.onClose?.()}></button>
<button className="text-gray-800 hover:text-blue-500">{props.type == 'news' ? '确定' : '重新生成'}</button>
<button onClick={handleSave} className="text-gray-800 hover:text-blue-500">{props.type == 'news' ? '确定' : '重新生成'}</button>
</div>
</div>
</Modal>);