File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
front-end/src/components/CustomNode Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11import React from 'react' ;
22import { VegaLite } from 'react-vega' ;
3- import { Roller } from 'react-spinners-css ' ;
3+ import { Spinner } from 'react-bootstrap ' ;
44import { Modal , Button } from 'react-bootstrap' ;
55import propTypes from 'prop-types' ;
66import { 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" ) {
You can’t perform that action at this time.
0 commit comments