From 2f7c29153bb9628062aa883a369f6430beddb082 Mon Sep 17 00:00:00 2001 From: Sascha Date: Tue, 30 Mar 2021 17:24:45 +0200 Subject: Fix pipeline fail and remove unused file --- webui/src/components/Label.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'webui/src/components') 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 + ')'; -- cgit