feat: case-insensitive search (#347)

This commit is contained in:
boojack
2022-10-27 08:05:45 +08:00
committed by GitHub
parent cb2e1ae355
commit bdf6d4d42a
3 changed files with 3 additions and 4 deletions

View File

@ -396,7 +396,7 @@ const MemoEditor: React.FC = () => {
/>
</div>
<div className="btns-container">
<button className="action-btn confirm-btn" disabled={!allowSave} onClick={handleSaveBtnClick}>
<button className="action-btn confirm-btn" disabled={!allowSave || state.isUploadingResource} onClick={handleSaveBtnClick}>
{t("editor.save")}
<img className="icon-img" src="/logo.webp" />
</button>