File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 778
778
},
779
779
"githubPullRequests.projectTasksDashboard.issueQuery" : {
780
780
"type" : " string" ,
781
- "default" : " state:open assignee:@me milestone: \" September 2025 \" " ,
781
+ "default" : " state:open assignee:@me " ,
782
782
"description" : " %githubPullRequests.projectTasksDashboard.issueQuery.description%"
783
783
}
784
784
}
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export class DashboardWebviewProvider extends WebviewBase {
81
81
super ( ) ;
82
82
this . _panel = panel ;
83
83
this . _webview = panel . webview ;
84
- this . _issueQuery = issueQuery || 'is:open assignee:@me milestone:"September 2025"' ;
84
+ this . _issueQuery = issueQuery ;
85
85
this . _repos = repos ;
86
86
this . _taskManager = new TaskManager ( this . _repositoriesManager , this . _copilotRemoteAgentManager ) ;
87
87
super . initialize ( ) ;
Original file line number Diff line number Diff line change @@ -146,10 +146,10 @@ export class TasksDashboardManager extends Disposable implements vscode.WebviewP
146
146
147
147
private getIssueQuery ( ) : string {
148
148
const config = vscode . workspace . getConfiguration ( 'githubPullRequests' ) ;
149
- return config . get < string > ( 'projectTasksDashboard.issueQuery' ) ?? this . getDefaultIssueQuery ( ) ;
149
+ return config . get < string > ( 'projectTasksDashboard.issueQuery' , this . getDefaultIssueQuery ( ) ) ;
150
150
}
151
151
152
152
private getDefaultIssueQuery ( ) : string {
153
- return 'is:open assignee:@me milestone:"September 2025" ' ;
153
+ return 'is:open assignee:@me' ;
154
154
}
155
155
}
You can’t perform that action at this time.
0 commit comments