Skip to content

Commit

Permalink
feature/FOUR-15039
Browse files Browse the repository at this point in the history
  • Loading branch information
luNunezProcessmaker committed Apr 16, 2024
1 parent 7e0390b commit ace8cdc
Showing 1 changed file with 23 additions and 14 deletions.
37 changes: 23 additions & 14 deletions src/components/renderer/form-list-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,9 @@
</span>
</template>
<b-dropdown-item
variant="success"
@click="
handleDropdownSelection('requests_dropdown', 'In Progress')
"
@click="handleDropdownSelection('requests_dropdown', 'all')"
>
<i class="fas fa-circle mr-2" />{{ $t("In Progress") }}
{{ $t("View All") }}
</b-dropdown-item>
<b-dropdown-item
variant="primary"
Expand All @@ -66,9 +63,12 @@
<i class="fas fa-circle mr-2" />{{ $t("Completed") }}
</b-dropdown-item>
<b-dropdown-item
@click="handleDropdownSelection('requests_dropdown', 'all')"
variant="success"
@click="
handleDropdownSelection('requests_dropdown', 'In Progress')
"
>
{{ $t("View All") }}
<i class="fas fa-circle mr-2" />{{ $t("In Progress") }}
</b-dropdown-item>
</b-dropdown>
</div>
Expand All @@ -86,20 +86,20 @@
{{ $t(titleDropdown) }}
</span>
</template>
<b-dropdown-item
variant="warning"
@click="handleDropdownSelection('tasks', 'In Progress')"
>
<i class="fas fa-circle mr-2" />{{ $t("In Progress") }}
<b-dropdown-item @click="handleDropdownSelection('tasks', 'all')">
{{ $t("View All") }}
</b-dropdown-item>
<b-dropdown-item
variant="danger"
@click="handleDropdownSelection('tasks', 'Overdue')"
>
<i class="fas fa-circle mr-2" />{{ $t("Overdue") }}
</b-dropdown-item>
<b-dropdown-item @click="handleDropdownSelection('tasks', 'all')">
{{ $t("View All") }}
<b-dropdown-item
variant="warning"
@click="handleDropdownSelection('tasks', 'In Progress')"
>
<i class="fas fa-circle mr-2" />{{ $t("In Progress") }}
</b-dropdown-item>
</b-dropdown>
</div>
Expand Down Expand Up @@ -327,4 +327,13 @@ export default {
.btn-outline-secondary {
border: none;
}
.dropdown-menu.show {
padding: 10px;
width: 211px;
}
.dropdown-item {
padding: 12px 8px;
}
</style>

0 comments on commit ace8cdc

Please sign in to comment.