mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
* Updated package json but not updated source files * Update eslint plugin * updated files
26 lines
533 B
JavaScript
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',
|
|
};
|
|
},
|
|
};
|
|
});
|