diff --git a/emails/templates/layouts/default.html b/emails/templates/layouts/default.html
index ca54acdd2060..c6b433c6cbc7 100644
--- a/emails/templates/layouts/default.html
+++ b/emails/templates/layouts/default.html
@@ -107,7 +107,7 @@
-
+
|
|
@@ -143,7 +143,7 @@
Sent by Grafana v[[.BuildVersion]]
-
© 2018 Grafana Labs
+
© 2019 Natel Energy
diff --git a/public/app/core/components/Footer/Footer.tsx b/public/app/core/components/Footer/Footer.tsx
index 45f7cc71131c..3aa19a0426a0 100644
--- a/public/app/core/components/Footer/Footer.tsx
+++ b/public/app/core/components/Footer/Footer.tsx
@@ -1,5 +1,4 @@
import React, { FC } from 'react';
-import { Tooltip } from '@grafana/ui';
interface Props {
appName: string;
@@ -16,37 +15,15 @@ export const Footer: FC = React.memo(
diff --git a/public/app/core/components/OrgActionBar/OrgActionBar.tsx b/public/app/core/components/OrgActionBar/OrgActionBar.tsx
index 016c47776686..5753240111b4 100644
--- a/public/app/core/components/OrgActionBar/OrgActionBar.tsx
+++ b/public/app/core/components/OrgActionBar/OrgActionBar.tsx
@@ -14,7 +14,7 @@ export interface Props {
export default class OrgActionBar extends PureComponent {
render() {
const { searchQuery, layoutMode, onSetLayoutMode, linkButton, setSearchQuery, target } = this.props;
- const linkProps = { href: linkButton.href };
+ const linkProps = { href: linkButton ? linkButton.href : '#' };
if (target) {
(linkProps as any).target = target;
@@ -33,9 +33,11 @@ export default class OrgActionBar extends PureComponent {
onSetLayoutMode(mode)} />
-
- {linkButton.title}
-
+ {linkButton && (
+
+ {linkButton.title}
+
+ )}
);
}
diff --git a/public/app/features/plugins/PluginListPage.tsx b/public/app/features/plugins/PluginListPage.tsx
index 03d383fdec0c..911cde2ebdf6 100644
--- a/public/app/features/plugins/PluginListPage.tsx
+++ b/public/app/features/plugins/PluginListPage.tsx
@@ -41,11 +41,6 @@ export class PluginListPage extends PureComponent {
searchQuery,
} = this.props;
- const linkButton = {
- href: 'https://grafana.com/plugins?utm_source=grafana_plugin_list',
- title: 'Find more plugins on Grafana.com',
- };
-
return (
@@ -55,7 +50,7 @@ export class PluginListPage extends PureComponent {
layoutMode={layoutMode}
onSetLayoutMode={mode => setPluginsLayoutMode(mode)}
setSearchQuery={query => setPluginsSearchQuery(query)}
- linkButton={linkButton}
+ linkButton={null}
/>
{hasFetched && plugins && (plugins && )}
>
diff --git a/public/img/grafana_icon.svg b/public/img/grafana_icon.svg
index 72702223dc77..5eb8fef4e65e 100644
--- a/public/img/grafana_icon.svg
+++ b/public/img/grafana_icon.svg
@@ -1,57 +1,2 @@
-
-
-
+
+
diff --git a/public/sass/layout/_page.scss b/public/sass/layout/_page.scss
index 6b2fa95730e0..edcefa44e82d 100644
--- a/public/sass/layout/_page.scss
+++ b/public/sass/layout/_page.scss
@@ -41,7 +41,7 @@
margin-right: auto;
padding-left: $spacer * 2;
padding-right: $spacer * 2;
- max-width: 980px;
+ max-width: 100%;
@include clearfix();
}
diff --git a/public/views/index-template.html b/public/views/index-template.html
index fa19ae599dd2..1e5a582415f4 100644
--- a/public/views/index-template.html
+++ b/public/views/index-template.html
@@ -198,34 +198,16 @@
diff --git a/scripts/grunt/options/exec.js b/scripts/grunt/options/exec.js
index 3296abecfd4a..fa983e426ba5 100644
--- a/scripts/grunt/options/exec.js
+++ b/scripts/grunt/options/exec.js
@@ -18,7 +18,7 @@ module.exports = function(config, grunt) {
command: 'yarn run typecheck',
src: ['public/app/**/*.ts*'],
},
- jest: 'node ./node_modules/jest-cli/bin/jest.js --maxWorkers 2',
+ jest: 'node ./node_modules/jest-cli/bin/jest.js --updateSnapshot --maxWorkers 2',
webpack:
'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
};