Skip to content

Commit 885cf16

Browse files
committed
work
1 parent 6245efd commit 885cf16

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/main/resources/templates/layout/task.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
</label>
139139
<div class="form-group input-group is-invalid">
140140
<span class="input-group-text is-invalid" id="basic-addon7">
141-
<i class="fa-solid fa-cloud"></i>
141+
<i class="fa-solid fa-diagram-project"></i>
142142
</span>
143143
<select th:field="*{project.id}" class="form-control form-control-lg" aria-describedby="basic-addon7">
144144
<option value="0"></option>

src/main/resources/templates/layout/tasks.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
class="task_col_content task_col_content_duedate twtooltip"
102102
th:text="${#calendars.format(task.dueDate,'dd.MM.yyyy')}">
103103
</span>
104-
<span th:if="${#locale.language eq 'en'}"
104+
<span th:if="${#locale.language eq 'en'}"
105105
th:id="'task_' + ${task.id} + '_col_due_date'"
106106
draggable="true" ondragstart="dragTask(event)"
107107
th:alt-title="#{task.col.twtooltip.duedate}"
@@ -147,12 +147,12 @@
147147
</td>
148148
<td th:id="'task_' + ${task.id} + '_col_context'" class="task_col task_col_context"
149149
th:if="${myTaskState eq 'ALL'}">
150-
<span th:if="${#locale.language eq 'de'}"
151-
th:id="'task_' + ${task.id} + '_col_context_txt'"
152-
draggable="true" ondragstart="dragTask(event)"
153-
class="task_col_content task_col_content_context twtooltip"
154-
th:alt-title="#{task.col.twtooltip.context}"
155-
th:text="${task.context.nameDe}">task.context.nameDe</span>
150+
<span th:if="${#locale.language eq 'de'}"
151+
th:id="'task_' + ${task.id} + '_col_context_txt'"
152+
draggable="true" ondragstart="dragTask(event)"
153+
class="task_col_content task_col_content_context twtooltip"
154+
th:alt-title="#{task.col.twtooltip.context}"
155+
th:text="${task.context.nameDe}">task.context.nameDe</span>
156156
<span th:if="${#locale.language ne 'de'}"
157157
th:id="'task_' + ${task.id} + '_col_context_txt'"
158158
draggable="true" ondragstart="dragTask(event)"
@@ -223,7 +223,7 @@ <h5 class="modal-title" id="taskModalScrollableTitle">
223223
<b th:text="#{tasks.inbox.project}" class="me-2">Project</b>
224224
<span th:if="${task.project ne null}">
225225
<a th:href="@{/project/{id}(id=${task.project.id})}">
226-
<i class="fas fa-folder-open"></i>
226+
<i class="fa-solid fa-diagram-project"></i>
227227
<span th:text="${task.project.name}">task.project.name</span></a>
228228
</span>
229229
<span th:if="${task.project eq null}">

0 commit comments

Comments
 (0)