<selectng-model="dashboard.timezone"class='gf-form-input'ng-options="f.value as f.text for f in [{value: '', text: 'Default'}, {value: 'browser', text: 'Local browser time'},{value: 'utc', text: 'UTC'}]"ng-change="timezoneChanged()"></select>
<selectng-model="ctrl.dashboard.timezone"class='gf-form-input'ng-options="f.value as f.text for f in [{value: '', text: 'Default'}, {value: 'browser', text: 'Local browser time'},{value: 'utc', text: 'UTC'}]"ng-change="timezoneChanged()"></select>
</div>
</div>
<gf-form-switchclass="gf-form"
label="Editable"
tooltip="Uncheck, then save and reload to disable all dashboard editing"
checked="dashboard.editable"
checked="ctrl.dashboard.editable"
label-class="width-11">
</gf-form-switch>
<gf-form-switchclass="gf-form"
label="Hide Controls"
tooltip="Hide row controls. Shortcut: CTRL+H or CMD+H"
checked="dashboard.hideControls"
checked="ctrl.dashboard.hideControls"
label-class="width-11">
</gf-form-switch>
</div>
...
...
@@ -79,7 +79,7 @@
</info-popover>
</label>
<divclass="gf-form-select-wrapper">
<selectng-model="dashboard.graphTooltip"class='gf-form-input'ng-options="f.value as f.text for f in [{value: 0, text: 'Default'}, {value: 1, text: 'Shared crosshair'},{value: 2, text: 'Shared Tooltip'}]"></select>
<selectng-model="ctrl.dashboard.graphTooltip"class='gf-form-input'ng-options="f.value as f.text for f in [{value: 0, text: 'Default'}, {value: 1, text: 'Shared crosshair'},{value: 2, text: 'Shared Tooltip'}]"></select>