We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dae07d commit a061554Copy full SHA for a061554
personalization-webcomponents/src/components/ChecklistHeader.vue
@@ -67,6 +67,18 @@ onMounted(() => {
67
if (element) {
68
element.innerHTML = props.checklist.title;
69
}
70
+
71
+ // Don't show breadcrump "Checkliste"
72
+ const removeChecklist = document.querySelector(
73
+ ".m-breadcrumb__list-item-current"
74
+ );
75
+ if (removeChecklist) {
76
+ removeChecklist.childNodes.forEach((node) => {
77
+ if (node.nodeType === 3) {
78
+ node.textContent = "";
79
+ }
80
+ });
81
82
});
83
84
const todoCount = computed(() => {
@@ -89,7 +101,7 @@ const doneCount = computed(() => {
89
101
90
102
.taskcontainer {
91
103
display: grid;
92
- grid-template-columns: 90px 100px 100px;
104
+ grid-template-columns: 100px 100px 100px;
93
105
gap: 8px;
94
106
95
107
0 commit comments