Skip to content

Commit

Permalink
fix(gantt): use required picker classes for native select
Browse files Browse the repository at this point in the history
  • Loading branch information
Juveniel committed May 23, 2023
1 parent 113bdd2 commit 13e9f5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/html/src/gantt/tests/gantt-react.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default () =>(
<Button selected>Week</Button>
<Button>Month</Button>
</ButtonGroup>
<select className="k-picker k-dropdown-list k-dropdown k-views-dropdown k-rounded-md">
<select className="k-picker k-picker-solid k-dropdown-list k-dropdown k-views-dropdown k-rounded-md">
<option value="day">Day</option>
<option value="week">Week</option>
<option value="month">Month</option>
Expand Down
2 changes: 1 addition & 1 deletion packages/html/src/gantt/tests/gantt-row-reordering.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default () => (
<Button className="k-gantt-create" icon="plus">Add Task</Button>
<span className="k-spacer"></span>
<div className="k-gantt-views-wrapper">
<select className="k-picker k-dropdown-list k-dropdown k-views-dropdown">
<select className="k-picker k-picker-solid k-dropdown-list k-dropdown k-views-dropdown k-rounded-md">
<option value="day">Day</option>
<option value="week">Week</option>
<option value="month">Month</option>
Expand Down
2 changes: 1 addition & 1 deletion packages/html/src/gantt/tests/gantt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default () =>(
<Button className="k-gantt-create" icon="plus">Add Task</Button>
<span className="k-spacer"></span>
<div className="k-gantt-views-wrapper">
<select className="k-picker k-dropdown-list k-dropdown k-views-dropdown">
<select className="k-picker k-picker-solid k-dropdown-list k-dropdown k-views-dropdown k-rounded-md">
<option value="day">Day</option>
<option value="week">Week</option>
<option value="month">Month</option>
Expand Down

0 comments on commit 13e9f5d

Please sign in to comment.