mirror of
https://github.com/grafana/grafana.git
synced 2026-08-14 07:04:57 -05:00
Chore: Bumps prettier version for new typescript syntax support (#20463)
* Chore: Bumps prettier version for new typescript syntax support * Ran new version of prettier against the codebase
This commit is contained in:
@@ -108,7 +108,11 @@ describe('ResultProcessor', () => {
|
||||
{
|
||||
label: 'A-series',
|
||||
color: '#7EB26D',
|
||||
data: [[100, 4], [200, 5], [300, 6]],
|
||||
data: [
|
||||
[100, 4],
|
||||
[200, 5],
|
||||
[300, 6],
|
||||
],
|
||||
info: undefined,
|
||||
isVisible: true,
|
||||
yAxis: {
|
||||
@@ -135,7 +139,11 @@ describe('ResultProcessor', () => {
|
||||
{ text: 'time', type: 'time', filterable: undefined },
|
||||
{ text: 'message', type: 'string', filterable: undefined },
|
||||
],
|
||||
rows: [[4, 100, 'this is a message'], [5, 200, 'second message'], [6, 300, 'third']],
|
||||
rows: [
|
||||
[4, 100, 'this is a message'],
|
||||
[5, 200, 'second message'],
|
||||
[6, 300, 'third'],
|
||||
],
|
||||
type: 'table',
|
||||
});
|
||||
});
|
||||
@@ -212,7 +220,11 @@ describe('ResultProcessor', () => {
|
||||
{
|
||||
label: 'A-series',
|
||||
color: '#7EB26D',
|
||||
data: [[100, 4], [200, 5], [300, 6]],
|
||||
data: [
|
||||
[100, 4],
|
||||
[200, 5],
|
||||
[300, 6],
|
||||
],
|
||||
info: undefined,
|
||||
isVisible: true,
|
||||
yAxis: {
|
||||
|
||||
Reference in New Issue
Block a user