mirror of
https://github.com/godotengine/godot-team-reports.git
synced 2025-12-31 13:48:17 +03:00
@@ -123,7 +123,7 @@ export default class PullRequestList extends LitElement {
|
|||||||
this._sortBy = "age";
|
this._sortBy = "age";
|
||||||
this._sortDirection = "desc";
|
this._sortDirection = "desc";
|
||||||
this._showDraft = false;
|
this._showDraft = false;
|
||||||
this._filterMilestone = "";
|
this._filterMilestone = "4.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
onSortClicked(sortField, event) {
|
onSortClicked(sortField, event) {
|
||||||
@@ -217,7 +217,12 @@ export default class PullRequestList extends LitElement {
|
|||||||
<option value="">*</option>
|
<option value="">*</option>
|
||||||
${milestones.map((item) => {
|
${milestones.map((item) => {
|
||||||
return html`
|
return html`
|
||||||
<option value="${item}">${item}</option>
|
<option
|
||||||
|
value="${item}"
|
||||||
|
.selected="${this._filterMilestone === item}"
|
||||||
|
>
|
||||||
|
${item}
|
||||||
|
</option>
|
||||||
`
|
`
|
||||||
})}
|
})}
|
||||||
</select>
|
</select>
|
||||||
|
|||||||
Reference in New Issue
Block a user