Skip to content

Commit eb3c9ca

Browse files
committed
Uses Spinner from react-bootstrap instead of Roller from react-spinner-css
1 parent f536d45 commit eb3c9ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

front-end/src/components/CustomNode/GraphView.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { VegaLite } from 'react-vega';
3-
import { Roller } from 'react-spinners-css';
3+
import { Spinner } from 'react-bootstrap';
44
import { Modal, Button } from 'react-bootstrap';
55
import propTypes from 'prop-types';
66
import { VariableSizeGrid as Grid } from 'react-window';
@@ -123,7 +123,7 @@ export default class GraphView extends React.Component {
123123

124124
if (this.state.loading) {
125125
// Print loading spinner
126-
body = (<Roller color="black" />);
126+
body = (<Spinner animation="border" />);
127127
} else if (this.state.data.length < 1) {
128128
// Print message to load respective table/graph
129129
if (this.props.node.options.node_type === "visualization") {

0 commit comments

Comments
 (0)