-
Notifications
You must be signed in to change notification settings - Fork 614
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gantt: fix state of 'Show Resources' and 'Show Dependencies' buttons (T1264485) #28904
Conversation
|
||
<script type="text/javascript" src="../../../packages/devextreme/artifacts/js/jquery.min.js"></script> | ||
<script type="text/javascript" src="../../../packages/devextreme/artifacts/js/dx-quill.min.js"></script> | ||
<script type="text/javascript" src="../../../packages/devextreme/artifacts//js/dx-gantt.min.js"></script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<script type="text/javascript" src="../../../packages/devextreme/artifacts//js/dx-gantt.min.js"></script> | |
<script type="text/javascript" src="../../../packages/devextreme/artifacts/js/dx-gantt.min.js"></script> |
packages/testcafe-models/gantt.ts
Outdated
import type { WidgetName } from './types'; | ||
import Widget from './internal/widget'; | ||
|
||
export default class Gantt extends Widget { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this class is not used. Let's delete it
@@ -66,7 +66,8 @@ export type WidgetName = | |||
| 'dxTreeList' | |||
| 'dxTreeView' | |||
| 'dxValidationSummary' | |||
| 'dxValidator'; | |||
| 'dxValidator' | |||
| 'dxGantt'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's also add gantt to WidgetOptions
below
No description provided.