aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Label.tsx
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2020-02-11 20:54:01 +0100
committerQuentin Gliech <quentingliech@gmail.com>2020-02-11 20:54:38 +0100
commit9ddcb4b09215f942cb7889f9756d426ad3c90253 (patch)
treee547e20530a8c713881eb29059e5647db6e91cca /webui/src/Label.tsx
parente5f52401b2a839881fedef5a446f0ed21d2d34c2 (diff)
downloadgit-bug-9ddcb4b09215f942cb7889f9756d426ad3c90253.tar.gz
webui: force import order
Diffstat (limited to 'webui/src/Label.tsx')
-rw-r--r--webui/src/Label.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/webui/src/Label.tsx b/webui/src/Label.tsx
index 68c50b9d..a33b4c2c 100644
--- a/webui/src/Label.tsx
+++ b/webui/src/Label.tsx
@@ -1,13 +1,13 @@
-import React from 'react';
+import { common } from '@material-ui/core/colors';
import { makeStyles } from '@material-ui/core/styles';
import {
getContrastRatio,
darken,
} from '@material-ui/core/styles/colorManipulator';
-import { common } from '@material-ui/core/colors';
+import React from 'react';
-import { Color } from './gqlTypes';
import { LabelFragment } from './Label.generated';
+import { Color } from './gqlTypes';
// Minimum contrast between the background and the text color
const contrastThreshold = 2.5;