grafana/public/test/mocks/dashboard-mock.js
Torkel Ödegaard 74d453f056
DashboardSchema: Remove old unused legacy props style and timepicker.enable (#73879)
* DashboardScheam: Remove old unused legacy props style and timepicker.enable

* Update

* fix test
2023-08-28 12:18:17 +02:00

25 lines
510 B
JavaScript

define([], function () {
'use strict';
return {
create: function () {
return {
title: '',
tags: [],
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',
};
},
};
});