Skip to content

Commit

Permalink
Docs: Add auto-reload issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayao0819 committed Oct 28, 2023
1 parent 5cef82e commit 774559e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@
### 開発

- [ ] [webpack-chrome-extension-reloader](https://www.npmjs.com/package/webpack-chrome-extension-reloader)でホットリロードに対応する
- [ ] SCSSで直にスタイルを書き込んだ場合に無効化できない問題を修正する
- [x] SCSSで直にスタイルを書き込んだ場合に無効化できない問題を修正する
- [ ] リロードなしで有効化/無効化できるようにする
- [ ] Reactコンポーネントを最適化する
- [ ] テストを書く
- [ ] ドキュメントを書く
- [ ] 設定を開いている間はポップアップを無効化する
- [x] 設定を開いている間はポップアップを無効化する
- [ ] ポップアップでの設定変更後に手動でリロードする必要がある問題を修正する
1 change: 0 additions & 1 deletion src/components/SwitchItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export function SwitchItem({ config, className, category }: { config: FrontConfi
return (e: React.ChangeEvent<HTMLInputElement>) => {
setEnabled(e.target.checked);
WebSites[config.id].storage.set(category, e.target.checked.toString());
chrome.runtime.sendMessage("reload");
};
}, []);

Expand Down

0 comments on commit 774559e

Please sign in to comment.