Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: LiveSplit/LiveSplitOne
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d110af34226183b40a57aaa77191b2ff11ee9edc
Choose a base ref
..
head repository: LiveSplit/LiveSplitOne
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 062860ef7de761202406cc73b1437577a5c8b343
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 src/ui/LiveSplit.tsx
  2. +1 −1 src/ui/TimerView.tsx
2 changes: 1 addition & 1 deletion src/ui/LiveSplit.tsx
Original file line number Diff line number Diff line change
@@ -382,7 +382,7 @@ export class LiveSplit extends React.Component<Props, State> {
kind: MenuKind.RunEditor,
editor,
splitsKey: undefined,
persistChanges: false,
persistChanges: true,
},
sidebarOpen: false,
});
2 changes: 1 addition & 1 deletion src/ui/TimerView.tsx
Original file line number Diff line number Diff line change
@@ -246,7 +246,7 @@ export class TimerView extends React.Component<Props, State> {
toast.error(e);
};
this.connection.onmessage = (e) => {
// TODO: Clone the Shared Timer. This assumes that `this` is always
// FIXME: Clone the Shared Timer. This assumes that `this` is always
// mounted.
if (typeof e.data === "string") {
const [command, ...args] = e.data.split(" ");