Dashboard: Remove super old prop that has not been used in years (#50826)

This commit is contained in:
Torkel Ödegaard 2022-06-17 14:55:35 +02:00 committed by GitHub
parent 36d6aef79f
commit c6ab87008a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 5 additions and 47 deletions

View File

@ -37,7 +37,6 @@ When a user creates a new dashboard, a new dashboard JSON object is initialized
"style": "dark",
"timezone": "browser",
"editable": true,
"hideControls": false,
"graphTooltip": 1,
"panels": [],
"time": {

View File

@ -406,7 +406,6 @@ Content-Type: application/json
{
"dashboard": {
"editable":false,
"hideControls":true,
"nav":[
{
"enable":false,

View File

@ -177,7 +177,6 @@ Content-Length: 1300
"editable": true,
"gnetId": null,
"graphTooltip": 0,
"hideControls": false,
"id": 1,
"links": [
@ -290,7 +289,6 @@ Content-Length: 1300
"editable": true,
"gnetId": null,
"graphTooltip": 0,
"hideControls": false,
"id": 1,
"links": [

View File

@ -29,7 +29,6 @@ title: 'HTTP Snapshot API '
{
"dashboard": {
"editable":false,
"hideControls":true,
"nav":[
{
"enable":false,
@ -157,7 +156,6 @@ Content-Type: application/json
},
"dashboard": {
"editable":false,
"hideControls":true,
"nav": [
{
"enable":false,

View File

@ -6,7 +6,6 @@
"style": "dark",
"timezone": "browser",
"editable": true,
"hideControls": false,
"sharedCrosshair": false,
"rows": [
{

View File

@ -7,7 +7,6 @@
"style": "dark",
"timezone": "browser",
"editable": true,
"hideControls": false,
"sharedCrosshair": false,
"rows": [
{

View File

@ -66,7 +66,6 @@ describe('SaveDashboardAsForm', () => {
expect(savedDashboardModel.id).toBe(null);
expect(savedDashboardModel.title).toBe('name');
expect(savedDashboardModel.editable).toBe(true);
expect(savedDashboardModel.hideControls).toBe(false);
});
it("appends 'Copy' to the name when the dashboard isnt new", async () => {

View File

@ -19,7 +19,6 @@ const getSaveAsDashboardClone = (dashboard: DashboardModel) => {
clone.uid = '';
clone.title += ' Copy';
clone.editable = true;
clone.hideControls = false;
// remove alerts if source dashboard is already persisted
// do not want to create alert dupes

View File

@ -72,7 +72,6 @@ export function restore(version: any, restoredFrom?: any): any {
editable: true,
gnetId: null,
graphTooltip: 0,
hideControls: false,
id: 1,
links: [],
restoredFrom: restoredFrom,

View File

@ -1,14 +1,10 @@
{
"id": null,
"title": "Templated Graphs Nested",
"tags": [
"showcase",
"templated"
],
"tags": ["showcase", "templated"],
"style": "dark",
"timezone": "browser",
"editable": true,
"hideControls": false,
"rows": [
{
"title": "Row1",
@ -27,10 +23,7 @@
"x-axis": true,
"y-axis": true,
"scale": 1,
"y_formats": [
"short",
"short"
],
"y_formats": ["short", "short"],
"grid": {
"max": null,
"min": 0,
@ -110,10 +103,7 @@
"x-axis": true,
"y-axis": true,
"scale": 1,
"y_formats": [
"short",
"short"
],
"y_formats": ["short", "short"],
"grid": {
"max": null,
"min": 0,
@ -180,29 +170,8 @@
"notice": false,
"enable": true,
"status": "Stable",
"time_options": [
"5m",
"15m",
"1h",
"6h",
"12h",
"24h",
"2d",
"7d",
"30d"
],
"refresh_intervals": [
"5s",
"10s",
"30s",
"1m",
"5m",
"15m",
"30m",
"1h",
"2h",
"1d"
],
"time_options": ["5m", "15m", "1h", "6h", "12h", "24h", "2d", "7d", "30d"],
"refresh_intervals": ["5s", "10s", "30s", "1m", "5m", "15m", "30m", "1h", "2h", "1d"],
"now": true
}
],