aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/WebviewLoader/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-12 11:08:41 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-12 11:08:41 +0100
commit4c2015db267ede5ecdf7fc838e326b7fa49d8195 (patch)
tree764ab8dd141c9973fdd7ef455cf94f7335cf440e /src/components/ui/WebviewLoader/index.js
parentUpdate changelog (diff)
downloadferdium-app-4c2015db267ede5ecdf7fc838e326b7fa49d8195.tar.gz
ferdium-app-4c2015db267ede5ecdf7fc838e326b7fa49d8195.tar.zst
ferdium-app-4c2015db267ede5ecdf7fc838e326b7fa49d8195.zip
Improve loader themeing
Diffstat (limited to 'src/components/ui/WebviewLoader/index.js')
-rw-r--r--src/components/ui/WebviewLoader/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/ui/WebviewLoader/index.js b/src/components/ui/WebviewLoader/index.js
index ab17199e5..3a3dbbe49 100644
--- a/src/components/ui/WebviewLoader/index.js
+++ b/src/components/ui/WebviewLoader/index.js
@@ -1,12 +1,13 @@
1import React, { Component } from 'react'; 1import React, { Component } from 'react';
2import PropTypes from 'prop-types'; 2import PropTypes from 'prop-types';
3import { observer } from 'mobx-react';
3import injectSheet from 'react-jss'; 4import injectSheet from 'react-jss';
4 5
5import FullscreenLoader from '../FullscreenLoader'; 6import FullscreenLoader from '../FullscreenLoader';
6 7
7import styles from './styles'; 8import styles from './styles';
8 9
9export default @injectSheet(styles) class WebviewLoader extends Component { 10export default @observer @injectSheet(styles) class WebviewLoader extends Component {
10 static propTypes = { 11 static propTypes = {
11 name: PropTypes.string.isRequired, 12 name: PropTypes.string.isRequired,
12 classes: PropTypes.object.isRequired, 13 classes: PropTypes.object.isRequired,