fix(ui): resolve dependency 'Not found' issue when filtering
- now correctly displays dependencies that exist but are filtered out of view
This commit is contained in:
@@ -1346,10 +1346,6 @@ function registerCommands(programInstance) {
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
console.log(
|
||||
chalk.blue(`Setting status of task(s) ${taskId} to: ${status}`)
|
||||
);
|
||||
|
||||
// Find project root for tag resolution
|
||||
const projectRoot = findProjectRoot();
|
||||
if (!projectRoot) {
|
||||
@@ -1357,6 +1353,14 @@ function registerCommands(programInstance) {
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
// Resolve tag using standard pattern and show current tag context
|
||||
const resolvedTag = tag || getCurrentTag(projectRoot) || 'master';
|
||||
displayCurrentTagIndicator(resolvedTag);
|
||||
|
||||
console.log(
|
||||
chalk.blue(`Setting status of task(s) ${taskId} to: ${status}`)
|
||||
);
|
||||
|
||||
await setTaskStatus(tasksPath, taskId, status, { projectRoot, tag });
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user