Alternatively, you can add this to the bottom of the MMM-Todoist.css custom CSS file.
.divTableCell:first-of-type {
display: none;
}
.divTableRow > div:nth-child(2) {
display: none;
}
Alternatively, you can add this to the bottom of the MMM-Todoist.css custom CSS file.
.divTableCell:first-of-type {
display: none;
}
.divTableRow > div:nth-child(2) {
display: none;
}
Hi All,
I just saw this thread and think I can offer some assistance. I wrote and maintain the MMM-Todoist module.
That space that you’re seeing is where the Todo Priority would be displayed if you set a priority.
Like this (the red bar):
If you have no need for that and want to remove the space the quickest “hack” you can do is:
divRow.appendChild(this.addPriorityIndicatorCell(item));
divRow.appendChild(this.addColumnSpacerCell());
Line 592 and 593.
That will remove the space however, every time you update module you might have to deal with a merge conflict.
More advanced:
You could also fork the repo, clone the new repo into your modules folder make, the changes, commit, push. You could then pull the upstream changes when you wanted to update.
Hey guys,
Very sorry that I have been MIA. I’ve been really busy with work and haven’t been able to give this any attention. I see a number of bugs and improvements in the thread. If you could submit your improvements and changes as Pull Request to the github repo, I’ll merge them in and everyone can have them. If not, I’ll try to add them in soon.
https://github.com/cbrooker/MMM-Todoist
Thanks,
Chris
I really liked paviro’s Wunderlist Module but I use Todoist. So I create a Module based on his work to display your Todoist todos on your mirror. It’s still relatively rough and only supports filtering by a single project, but I’ll increase the functionality when I get some more time.