Just installed this and am rather excited to have found it! I noticed the buttons for things like adding a task are really awkward on mobile (I was in the iOS Companion app)… is this something you could look into?
Love this, and am working on setting up some tasks here, and working on developing a simple and clean table view. Display is great, but my click to clear isn’t functioning, giving the error message shown below.
I am using the flex-table-card as follows:
type: custom:auto-entities
filter:
include:
- options: {}
integration: 01KFS5D0HFAEX055HWD4QVAX0H
label: pets
card:
type: custom:flex-table-card
title: Routine Pet Tasks
clickable: false
sort_by: next_due+
columns:
- data: icon
name: " "
- data: friendly_name
name: Task
- data: last_performed
name: Last Done
clickable: true
modify: (([y, m, d]) => `${m}-${d}-${y}`)(x.split('T')[0].split('-'))
- data: next_due
name: Next Due
modify: (([y, m, d]) => `${m}-${d}-${y}`)(x.split('T')[0].split('-'))
- data: state
name: " "
modify: |-
if (x == "off")
"Done?"
else
"Done."
tap_action:
action: perform-action
perform_action: home_maintenance.reset_last_performed
data:
entity_id: this.entity_id
confirmation:
text: Mark col[1] as complete?
After confirming that I want to mark the item complete, this message appears:
Failed to perform the action home_maintenance/reset_last_performed. value should be a string for dictionary value @ data['entity_id']
Anyone else having problems with their integration? I’ve been using it for a few months without issue (and love it by the way), however it recently stopped allowing me to edit all of the tasks I’ve created.
The tasks themselves seem to be working correctly. I can manually click the check box to mark something complete, although I typically utilize NFC tags that I’ve set up. What I can no longer do however is click the 3 dots to show the menu and edit them. I visibly see the three dots, but nothing happens with I click them.
I’m running the latest version of both HA OS (Core 2025.3.2, Supervisor 2026.03.0) and Home Maintenance (v1.5.4)
I switched to using this. Very early in development, but seems promising. Has a nice GUI and the dev fixed a couple things I requested pretty quickly. ChoreOps just seems too heavy for what I’m looking for.
I replaced the file, but i still can't click on the three dots of every task. Renaming the entities manualy replaces their name "Home Maintenance" to the name I want, but if I make a new task, the standard name is stille "Home maintenance". So nothing changed by replacing te main.js code... or am I doing something wrong?
I now have two representations to choose from. Buttons for edit and delete can also be hidden. The number of columns can be adjusted in the tile display.