fix typo
This commit is contained in:
@@ -5,6 +5,6 @@
|
||||
"dateTo": "Date To",
|
||||
"autorefreshInterval": "Auto-refresh Interval",
|
||||
"displayRecords": "Display Records",
|
||||
"isDobleHeight": "Height 2x"
|
||||
"isDoubleHeight": "Height 2x"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<div id="dashlet-{{id}}" class="panel panel-default dashlet{{#if isDobleHeight}} double-height{{/if}}" data-name="{{name}}" data-id="{{id}}">
|
||||
<div id="dashlet-{{id}}" class="panel panel-default dashlet{{#if isDoubleHeight}} double-height{{/if}}" data-name="{{name}}" data-id="{{id}}">
|
||||
<div class="panel-heading">
|
||||
<div class="dropdown pull-right menu-container">
|
||||
<button class="dropdown-toggle btn btn-link btn-sm menu-button" data-toggle="dropdown"><span class="caret"></span></button>
|
||||
|
||||
@@ -36,7 +36,7 @@ Espo.define('Views.Dashlet', 'View', function (Dep) {
|
||||
name: this.name,
|
||||
id: this.id,
|
||||
title: this.getOption('title'),
|
||||
isDobleHeight: this.getOption('isDobleHeight')
|
||||
isDoubleHeight: this.getOption('isDoubleHeight')
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ Espo.define('Views.Dashlets.Abstract.RecordList', 'Views.Dashlets.Abstract.Base'
|
||||
type: 'enumInt',
|
||||
options: [3,4,5,10,15],
|
||||
},
|
||||
'isDobleHeight': {
|
||||
'isDoubleHeight': {
|
||||
type: 'bool',
|
||||
}
|
||||
}),
|
||||
|
||||
@@ -28,7 +28,7 @@ Espo.define('Views.Dashlets.Stream', 'Views.Dashlets.Abstract.Base', function (D
|
||||
defaultOptions: {
|
||||
displayRecords: 5,
|
||||
autorefreshInterval: 0.5,
|
||||
isDobleHeight: false
|
||||
isDoubleHeight: false
|
||||
},
|
||||
|
||||
_template: '<div class="list-container">{{{list}}}</div>',
|
||||
@@ -38,7 +38,7 @@ Espo.define('Views.Dashlets.Stream', 'Views.Dashlets.Abstract.Base', function (D
|
||||
type: 'enumInt',
|
||||
options: [3,4,5,10,15]
|
||||
},
|
||||
'isDobleHeight': {
|
||||
'isDoubleHeight': {
|
||||
type: 'bool',
|
||||
},
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user