diff options
Diffstat (limited to 'webui/src/components')
-rw-r--r-- | webui/src/components/Label.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/webui/src/components/Label.tsx b/webui/src/components/Label.tsx index bbe7c158..e719eee0 100644 --- a/webui/src/components/Label.tsx +++ b/webui/src/components/Label.tsx @@ -8,8 +8,7 @@ import { } from '@material-ui/core/styles/colorManipulator'; import { Color } from '../gqlTypes'; - -import { LabelFragment } from './fragments.generated'; +import { LabelFragment } from '../graphql/fragments.generated'; const _rgb = (color: Color) => 'rgb(' + color.R + ',' + color.G + ',' + color.B + ')'; |