diff --git a/monkey/monkey_island/cc/ui/src/components/ui-components/ParticleBackground.js b/monkey/monkey_island/cc/ui/src/components/ui-components/ParticleBackground.js index 97407293a..f88597b60 100644 --- a/monkey/monkey_island/cc/ui/src/components/ui-components/ParticleBackground.js +++ b/monkey/monkey_island/cc/ui/src/components/ui-components/ParticleBackground.js @@ -1,4 +1,4 @@ -import Particles from "react-tsparticles"; +import Particles from 'react-tsparticles'; import {particleParams} from '../../styles/components/particle-component/ParticleBackgroundParams'; import React from 'react'; diff --git a/monkey/monkey_island/cc/ui/src/styles/components/particle-component/ParticleBackgroundParams.js b/monkey/monkey_island/cc/ui/src/styles/components/particle-component/ParticleBackgroundParams.js index 0eb3d63d0..10453de0d 100644 --- a/monkey/monkey_island/cc/ui/src/styles/components/particle-component/ParticleBackgroundParams.js +++ b/monkey/monkey_island/cc/ui/src/styles/components/particle-component/ParticleBackgroundParams.js @@ -1,20 +1,20 @@ export const particleParams = { - "fps_limit": 60, - "particles": { - "color": {"value": "#646464"}, - "links": {"color": "#555555", "distance": 150, "enable": true, "opacity": 0.4, "width": 1}, - "move": { - "bounce": false, - "direction": "none", - "enable": true, - "outMode": "out", - "random": false, - "speed": 2, - "straight": false + 'fps_limit': 60, + 'particles': { + 'color': {'value': '#646464'}, + 'links': {'color': '#555555', 'distance': 150, 'enable': true, 'opacity': 0.4, 'width': 1}, + 'move': { + 'bounce': false, + 'direction': 'none', + 'enable': true, + 'outMode': 'out', + 'random': false, + 'speed': 2, + 'straight': false }, - "number": {"density": {"enable": true, "area": 800}, "value": 50}, - "shape": {"type": "circle"}, - "size": {"value": 3} + 'number': {'density': {'enable': true, 'area': 800}, 'value': 50}, + 'shape': {'type': 'circle'}, + 'size': {'value': 3} }, - "detectRetina": true + 'detectRetina': true }