Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions resources/img/no-tasks.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions resources/js/components/common/DataLoading.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
<div v-if="emptyIconType() === 'noData'">
<img src="../../../img/no-results.svg" class="no-results-img" alt="no-results">
</div>
<div v-if="emptyIconType() === 'noTasks'">
<img src="../../../img/no-tasks.svg" class="no-results-img" alt="no-results">
</div>
</div>
<p class="empty-desc">{{ emptyDescText() }}</p>
</div>
Expand Down
4 changes: 2 additions & 2 deletions resources/js/tasks/components/TasksList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@
<data-loading
v-show="shouldShowLoader"
:for="/tasks\?page|results\?page/"
:empty="$t('Congratulations')"
:empty="$t('Well, it seems nothing in here')"
:empty-desc="$t('You don\'t currently have any tasks assigned to you')"
empty-icon="beach"
empty-icon="noTasks"
/>
<pagination-table
:meta="data.meta"
Expand Down
1 change: 1 addition & 0 deletions resources/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1976,6 +1976,7 @@
"Welcome WebEntry": "Welcome",
"Welcome": "Welcome",
"Welcome Back": "Welcome Back",
"Well, it seems nothing in here": "Well, it seems nothing in here",
"What is the URL of this ProcessMaker installation? (Ex: https://pm.example.com, with no trailing slash)": "What is the URL of this ProcessMaker installation? (Ex: https://pm.example.com, with no trailing slash)",
"What Screen Should Be Used For Rendering This Interstitial": "What Screen Should Be Used For Rendering This Interstitial",
"What Screen Should Be Used For Rendering This Task": "What Screen Should Be Used For Rendering This Task",
Expand Down