mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-05 19:21:46 +00:00
* Initial top level control. * Added the jump buttons. * Tiny styling adjustments. * Massive renaming. * Pause info * Added slider marks. * Improved messaging. * Freeze all updates when paused. * Repositioned for Configure button. * Improved the flow. * Working browsing through slider. * Small styling. * Hide time travel button behind the feature flag. * Fixed actions. * Elements positioning corner cases. * Removed nodes delta buffering code. * Fixed the flow. * Fixed almost all API call cases. * Final touches * Fixed the tests. * Fix resource view updates when time travelling. * Added some comments. * Addressed some of @foot's comments.
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
import { createSelector } from 'reselect';
|
|
|
|
|
|
export const isPausedSelector = createSelector(
|
|
[
|
|
state => state.get('pausedAt')
|
|
],
|
|
pausedAt => !!pausedAt
|
|
);
|