grafana/public/test/mocks/dashboard-mock.js
Torkel Ödegaard 1d689888b0
Prettier: Upgrade to 2 (#30387)
* Updated package json but not updated source files

* Update eslint plugin

* updated files
2021-01-20 07:59:48 +01:00

26 lines
533 B
JavaScript

define([], function () {
'use strict';
return {
create: function () {
return {
title: '',
tags: [],
style: 'dark',
timezone: 'browser',
editable: true,
failover: false,
panel_hints: true,
rows: [],
pulldowns: [{ type: 'templating' }, { type: 'annotations' }],
nav: [{ type: 'timepicker' }],
time: { from: 'now-6h', to: 'now' },
templating: {
list: [],
},
refresh: '10s',
};
},
};
});