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 778778 },
779779 "githubPullRequests.projectTasksDashboard.issueQuery" : {
780780 "type" : " string" ,
781- "default" : " state:open assignee:@me milestone: \" September 2025 \" " ,
781+ "default" : " state:open assignee:@me " ,
782782 "description" : " %githubPullRequests.projectTasksDashboard.issueQuery.description%"
783783 }
784784 }
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export class DashboardWebviewProvider extends WebviewBase {
8181 super ( ) ;
8282 this . _panel = panel ;
8383 this . _webview = panel . webview ;
84- this . _issueQuery = issueQuery || 'is:open assignee:@me milestone:"September 2025"' ;
84+ this . _issueQuery = issueQuery ;
8585 this . _repos = repos ;
8686 this . _taskManager = new TaskManager ( this . _repositoriesManager , this . _copilotRemoteAgentManager ) ;
8787 super . initialize ( ) ;
Original file line number Diff line number Diff line change @@ -146,10 +146,10 @@ export class TasksDashboardManager extends Disposable implements vscode.WebviewP
146146
147147 private getIssueQuery ( ) : string {
148148 const config = vscode . workspace . getConfiguration ( 'githubPullRequests' ) ;
149- return config . get < string > ( 'projectTasksDashboard.issueQuery' ) ?? this . getDefaultIssueQuery ( ) ;
149+ return config . get < string > ( 'projectTasksDashboard.issueQuery' , this . getDefaultIssueQuery ( ) ) ;
150150 }
151151
152152 private getDefaultIssueQuery ( ) : string {
153- return 'is:open assignee:@me milestone:"September 2025" ' ;
153+ return 'is:open assignee:@me' ;
154154 }
155155}
You can’t perform that action at this time.
0 commit comments