forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'grafana/master' into backend-service-in…
…-grafanaui * grafana/master: Gauge: Fix switching orientation issue when switching from BarGauge to Gauge (grafana#17064) serverlock: run tests async should be more linear time wise (grafana#17059) InfoPopover: Fixes transclude undefined error (grafana#17063) Dashboard: Fixes lazy loading & expanding collapsed rows on mobile (grafana#17055) fix: Azure Monitor adds missing closing div tag to query editor (grafana#17057) Chore: Use executable dir instead of pwd in CLI for isDev check (grafana#16974) Search: Set element height to 100% to avoid Chrome 74's overflow (grafana#17054) Docs: adds note about removing session storage (grafana#17003) Chore: remove use of `== false` (grafana#17036) Explore: use @grafana/ui legend (grafana#17027) tech: avoid alias for importing models in alerting (grafana#17041) DataSourcePlugin: support custom tabs (grafana#16859) Dashboard: Fixes scrolling issues for Edge browser (grafana#17033) SeriesData: remove color from Field (grafana#17044)
- Loading branch information
Showing
96 changed files
with
3,513 additions
and
1,717 deletions.
There are no files selected for viewing
1,337 changes: 1,337 additions & 0 deletions
1,337
devenv/dev-dashboards/datasource-testdata/new_features_in_v62.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
import React from 'react'; | ||
import { cx } from 'emotion'; | ||
|
||
export const SeriesIcon: React.FunctionComponent<{ color: string }> = ({ color }) => { | ||
return <i className="fa fa-minus pointer" style={{ color }} />; | ||
export interface SeriesIconProps { | ||
color: string; | ||
className?: string; | ||
} | ||
export const SeriesIcon: React.FunctionComponent<SeriesIconProps> = ({ color, className }) => { | ||
return <i className={cx('fa', 'fa-minus', className)} style={{ color }} />; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.