Skip to content
This repository has been archived by the owner on Feb 14, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4 from DevExpress/fix_typo
Browse files Browse the repository at this point in the history
fix #3
  • Loading branch information
dimarudnev authored Mar 7, 2018
2 parents f421b0d + 79de7c4 commit 81be89f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/dashboard-panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var CustomExtensions;
toViewerItem.disabled = ko.pureComputed(function () { return !!_this._dashboardControl.dashboard(); });
this.allowSwitchToDesigner(_dashboardControl.allowSwitchToDesigner);
this._toolbarElement.items.push(toViewerItem);
this.desingerToViewerAction = {
this.designerToViewerAction = {
orderNo: 60,
action: this.showPanelAsync
};
Expand Down
2 changes: 1 addition & 1 deletion dist/dashboard-panel.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/dashboard-panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module CustomExtensions {
visible = ko.observable(false);
allowSwitchToDesigner = ko.observable<boolean>(true);

desingerToViewerAction: DevExpress.Dashboard.ISequenceAction;
designerToViewerAction: DevExpress.Dashboard.ISequenceAction;
viewerToDesignerAction: DevExpress.Dashboard.ISequenceAction;
left: KnockoutComputed<number>;
selectedItemKeys = ko.observableArray<string>();
Expand All @@ -31,7 +31,7 @@ module CustomExtensions {

this._toolbarElement.items.push(toViewerItem);

this.desingerToViewerAction = {
this.designerToViewerAction = {
orderNo: 60,
action: this.showPanelAsync
}
Expand Down

0 comments on commit 81be89f

Please sign in to comment.