Update instUI from 5.10.0 to 5.11.0
closes GRADE-1209 CORE-1484 this new version of instui includes a fix we need For pagination: Test plan: * verify the pagination on the account course/user search works * ensure it does not steal focus with more than 5 pages Change-Id: I5a5e67d10ff591fb0477a80598a30d89273cf35e Reviewed-on: https://gerrit.instructure.com/152862 Tested-by: Jenkins Reviewed-by: Jeremy Neander <jneander@instructure.com> Reviewed-by: Mysti Sadler <mysti@instructure.com> Reviewed-by: Brent Burgoyne <bburgoyne@instructure.com> QA-Review: Anju Reddy <areddy@instructure.com> Product-Review: Ryan Shaw <ryan@instructure.com>
This commit is contained in:
parent
0c31349da7
commit
bfc647720d
|
@ -53,7 +53,6 @@ export default class CoursePicker extends React.Component {
|
|||
super(props)
|
||||
this.state = {
|
||||
isExpanded: props.isExpanded,
|
||||
isManuallyExpanded: props.isExpanded,
|
||||
announceChanges: false,
|
||||
}
|
||||
this._homeRef = null;
|
||||
|
@ -84,7 +83,6 @@ export default class CoursePicker extends React.Component {
|
|||
onFilterActivate = () => {
|
||||
this.setState({
|
||||
isExpanded: true,
|
||||
isManuallyExpanded: this.coursesToggle.state.isExpanded,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -220,7 +220,7 @@ export default class CoursePickerTable extends React.Component {
|
|||
<tbody />
|
||||
</Table>
|
||||
</PresentationContent>
|
||||
<p className="bca-table__select-all">
|
||||
<div className="bca-table__select-all">
|
||||
<Checkbox
|
||||
onChange={this.onSelectAllToggle}
|
||||
value="all"
|
||||
|
@ -233,7 +233,7 @@ export default class CoursePickerTable extends React.Component {
|
|||
</Text>
|
||||
}
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue