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 17, 2024
1 parent d31fe8b commit f7785f5
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/components/renderer/form-list-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,28 @@
{{ $t(title) }}
</p>
<template v-if="dataControl.dropdownShow === 'requests'">
<b-dropdown variant="outline-secondary" no-caret>
<b-dropdown
id="typeRequestDropdown"
variant="outline-secondary"
right
no-caret
>
<template #button-content>
<i class="fas fa-caret-down" />
</template>
<b-dropdown-item
@click="handleDropdownSelection('requests_filter', 'by_me')"
>
{{ $t("As Requester") }}
<span class="item-text">
{{ $t("As Requester") }}
</span>
</b-dropdown-item>
<b-dropdown-item
@click="handleDropdownSelection('requests_filter', 'as_participant')"
>
{{ $t("As Participant") }}
<span class="item-text">
{{ $t("As Participant") }}
</span>
</b-dropdown-item>
</b-dropdown>
</template>
Expand Down Expand Up @@ -366,12 +375,15 @@ export default {
</style>

<style lang="scss">
#typeRequestDropdown .dropdown-menu,
#resquestDropdown .dropdown-menu,
#tasksDropdown .dropdown-menu {
padding: 10px;
width: 211px;
box-shadow: 0px 10px 20px 4px #00000021;
}
#typeRequestDropdown .dropdown-item,
#resquestDropdown .dropdown-item,
#tasksDropdown .dropdown-item {
padding: 10px 8px;
Expand Down

0 comments on commit f7785f5

Please sign in to comment.