mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug
- Fixed bug that saw annotations as UDA orphans in the 'info' command.
This commit is contained in:
parent
9028ca4945
commit
1d593c39e0
1 changed files with 2 additions and 1 deletions
|
@ -355,7 +355,8 @@ int CmdInfo::execute (std::string& output)
|
|||
// Show any orphaned UDAs, which are identified by not being represented in
|
||||
// the context.columns map.
|
||||
for (att = all.begin (); att != all.end (); ++att)
|
||||
if (context.columns.find (*att) == context.columns.end ())
|
||||
if (att->substr (0, 11) != "annotation_" &&
|
||||
context.columns.find (*att) == context.columns.end ())
|
||||
{
|
||||
row = view.addRow ();
|
||||
view.set (row, 0, "[" + *att);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue