Playground improvements
parent
20a8d5a651
commit
e3b1a47554
|
@ -140,7 +140,7 @@ export class PlaygroundModel {
|
|||
}
|
||||
}
|
||||
|
||||
private readonly debouncer = new Debouncer(250);
|
||||
private readonly debouncer = new Debouncer(700);
|
||||
|
||||
@observable
|
||||
public isDirty = false;
|
||||
|
|
|
@ -133,10 +133,16 @@ export class PlaygroundPageContent extends React.Component<
|
|||
checked={
|
||||
model.settings.autoReload
|
||||
}
|
||||
onChange={(e) =>
|
||||
(model.settings.autoReload =
|
||||
e.target.checked)
|
||||
}
|
||||
onChange={(e) => {
|
||||
model.settings.autoReload =
|
||||
e.target.checked;
|
||||
if (
|
||||
e.target.checked &&
|
||||
model.isDirty
|
||||
) {
|
||||
model.reload();
|
||||
}
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
<Button
|
||||
|
|
Loading…
Reference in New Issue