aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/time_counter.tsx
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-02 00:51:27 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-02 00:51:27 +0800
commitf9a38fcb32ee4e755c7f271a1c5a116c29985a10 (patch)
tree6d84100fe1b8139b832ff286c4bbd5669e18df1b /packages/instant/src/components/time_counter.tsx
parent906909e33fe97d49196696c528c131c1a1c66f14 (diff)
downloaddexon-sol-tools-f9a38fcb32ee4e755c7f271a1c5a116c29985a10.tar
dexon-sol-tools-f9a38fcb32ee4e755c7f271a1c5a116c29985a10.tar.gz
dexon-sol-tools-f9a38fcb32ee4e755c7f271a1c5a116c29985a10.tar.bz2
dexon-sol-tools-f9a38fcb32ee4e755c7f271a1c5a116c29985a10.tar.lz
dexon-sol-tools-f9a38fcb32ee4e755c7f271a1c5a116c29985a10.tar.xz
dexon-sol-tools-f9a38fcb32ee4e755c7f271a1c5a116c29985a10.tar.zst
dexon-sol-tools-f9a38fcb32ee4e755c7f271a1c5a116c29985a10.zip
ended -> hasEnded
Diffstat (limited to 'packages/instant/src/components/time_counter.tsx')
-rw-r--r--packages/instant/src/components/time_counter.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/instant/src/components/time_counter.tsx b/packages/instant/src/components/time_counter.tsx
index 26deb82bd..7d9245b5d 100644
--- a/packages/instant/src/components/time_counter.tsx
+++ b/packages/instant/src/components/time_counter.tsx
@@ -7,7 +7,7 @@ import { Text } from './ui/text';
export interface TimeCounterProps {
estimatedTimeMs: number;
- ended: boolean;
+ hasEnded: boolean;
}
interface TimeCounterState {
elapsedSeconds: number;
@@ -28,7 +28,7 @@ export class TimeCounter extends React.Component<TimeCounterProps, TimeCounterSt
}
public componentDidUpdate(prevProps: TimeCounterProps): void {
- if (prevProps.ended !== this.props.ended) {
+ if (prevProps.hasEnded !== this.props.hasEnded) {
this._setupTimerBasedOnProps();
}
}
@@ -44,7 +44,7 @@ export class TimeCounter extends React.Component<TimeCounterProps, TimeCounterSt
}
private _setupTimerBasedOnProps(): void {
- this.props.ended ? this._clearTimer() : this._newTimer();
+ this.props.hasEnded ? this._clearTimer() : this._newTimer();
}
private _newTimer(): void {