diff --git a/public/app/features/admin/LicenseChrome.tsx b/public/app/features/admin/LicenseChrome.tsx index 60f36cbb261..96c3538ba34 100644 --- a/public/app/features/admin/LicenseChrome.tsx +++ b/public/app/features/admin/LicenseChrome.tsx @@ -6,9 +6,7 @@ import { GrafanaTheme } from '@grafana/data'; const title = { fontWeight: 500, fontSize: '26px', lineHeight: '123%' }; const getStyles = stylesFactory((theme: GrafanaTheme) => { - const backgroundUrl = theme.isDark - ? '/public/img/licensing/header_dark.svg' - : '/public/img/licensing/header_light.svg'; + const backgroundUrl = theme.isDark ? 'public/img/licensing/header_dark.svg' : 'public/img/licensing/header_light.svg'; const footerBg = theme.isDark ? theme.colors.dark9 : theme.colors.gray6; return { @@ -57,7 +55,7 @@ export const LicenseChrome: React.FC = ({ header, editionNotice, subheade }} > Grafana {

At your service

- - - + + + 24x7x365 support via @@ -95,7 +95,7 @@ const ServiceInfo: React.FC = () => { - + in the upgrade process @@ -167,7 +167,7 @@ interface ItemProps { } const Item: React.FC = ({ children, title, image }) => { - const imageUrl = image ? image : '/public/img/licensing/checkmark.svg'; + const imageUrl = image ? image : 'public/img/licensing/checkmark.svg'; const itemStyle = css` display: flex;