mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 02:00:43 +00:00
* Node details fetching reports at proper timestamp. * Corrected all the relevant timestamps in the UI. * Renamed some state variables. * Time travel works for topologies list. * Added a whole screen overlay for time travel. * Polished the backend. * Make time travel work also with the Resource View. * Fixed the jest tests. * Fixed the empty view message for resource view. * Some naming polishing. * Addressed the comments.
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
|
|
export default class Overlay extends React.Component {
|
|
render() {
|
|
const className = classNames('overlay', { faded: this.props.faded });
|
|
|
|
return <div className={className} />;
|
|
}
|
|
}
|