Skip to content

Commit

Permalink
docs(examples): update task name style
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-soft committed May 15, 2024
1 parent 50043c7 commit 673d91e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions examples/todolist/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ ui_widget_t *ui_task_item_create(task_t *task)
if (strcmp(task->status, "completed") == 0) {
ui_widget_add_class(item, "is-completed");
}
ui_widget_add_class(name, "task-name");
ui_widget_add_class(status, "task-status");
ui_widget_add_class(del, "task-delete");
ui_widget_append(item, status);
Expand Down

0 comments on commit 673d91e

Please sign in to comment.