This commit is contained in:
Johann Dreo 2023-07-31 17:40:39 +02:00
commit d2f351327f
2 changed files with 3 additions and 2 deletions

View file

@ -14,3 +14,4 @@
14,"DONE","highlight last action","Use a virtual hint column to point to the last touched task.","feat,UX","","2023-07-30T10:20:36.795048"
15,"TODO","hide old done tasks","Hide tasks with last status that haven't been touched since a long time.","feat","","2023-07-30T10:16:39.517669"
16,"TODO","sort by priority","Add a priority column and a sorting option.","feat","","2023-07-31T09:19:16.258603"
17,"TODO","fix layout filtering","When changing themes, the layout filtering hack in Horizontal* does not work anymore.","bug","","2023-07-31T17:40:15.708249"

1 ID STATUS TITLE DETAILS TAGS DEADLINE TOUCHED
14 14 DONE highlight last action Use a virtual hint column to point to the last touched task. feat,UX 2023-07-30T10:20:36.795048
15 15 TODO hide old done tasks Hide tasks with last status that haven't been touched since a long time. feat 2023-07-30T10:16:39.517669
16 16 TODO sort by priority Add a priority column and a sorting option. feat 2023-07-31T09:19:16.258603
17 17 TODO fix layout filtering When changing themes, the layout filtering hack in Horizontal* does not work anymore. bug 2023-07-31T17:40:15.708249

View file

@ -316,7 +316,7 @@ class Vertical(Layout):
sections = []
if self.context.obj['highlight'] is not None:
df.loc[self.context.obj['highlight'], 'H'] = self.contex.obj['highlight_mark']
df.loc[self.context.obj['highlight'], 'H'] = self.context.obj['highlight_mark']
# Group by status.
tables = df.groupby(self.context.obj['status_key'])
@ -487,7 +487,7 @@ class HorizontalSpaced(Horizontal):
sections = []
if self.context.obj['highlight'] is not None:
df.loc[self.context.obj['highlight'], 'H'] = self.contex.obj['highlight_mark']
df.loc[self.context.obj['highlight'], 'H'] = self.context.obj['highlight_mark']
# Group by status.
tables = df.groupby(self.context.obj['status_key'])