Skip to content

Commit eab60ad

Browse files
committed
fixes
1 parent 385ae10 commit eab60ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dashi/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ function App() {
4343
if (panelsResponse.result) {
4444
const panelIds = panelsResponse.result.panels;
4545
panelSelector = (
46-
<div>
46+
<div style={{ padding: 5 }}>
4747
{panelIds.map((panelId) => (
4848
<div key={panelId}>
4949
<input
5050
type="checkbox"
5151
checked={Boolean(panelVisibilities[panelId])}
5252
value={panelId}
53-
onClick={(e) => {
53+
onChange={(e) => {
5454
setPanelVisibilities({
5555
...panelVisibilities,
5656
[panelId]: e.currentTarget.checked,

0 commit comments

Comments
 (0)