Skip to content

Commit

Permalink
Adding FOUR-10338 functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
CarliPinell committed Oct 10, 2023
1 parent 67104a4 commit e462fae
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
11 changes: 10 additions & 1 deletion src/components/renderer/form-list-table.vue
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,13 @@
{{ title }}
</p>
</template>
<div class="ml-auto mr-2">
<i class="fas fa-search custom-icon" />
</div>
<div>
<i class="fas fa-search" />
<b-link :href="dataControl.url">
<i class="fas fa-external-link-alt custom-icon" />
</b-link>
</div>
</div>
</div>
Expand Down Expand Up @@ -102,4 +107,8 @@ export default {
letter-spacing: -0.28px;
text-transform: uppercase;
}
.custom-icon {
color: #6C8498; /* Cambia esto al color que desees */
}
</style>
3 changes: 2 additions & 1 deletion src/components/renderer/form-new-request.vue
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ export default {
count: "0",
showControl: true,
showAvatar: false,
colorTextStart: "color: #57646F"
colorTextStart: "color: #57646F",
url: "#"
};
this.$emit("startControl", dataStart);
})
Expand Down
3 changes: 2 additions & 1 deletion src/components/renderer/form-requests.vue
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ export default {
showAvatar: true,
variant: "primary",
textColor: "text-primary",
colorText: "color: #1572C2"
colorText: "color: #1572C2",
url: "/requests"
};
this.$emit("requestsCount", dataRequests);
})
Expand Down
3 changes: 2 additions & 1 deletion src/components/renderer/form-tasks.vue
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ export default {
showAvatar: true,
variant: "warning",
textColor: "text-warning",
colorText: "color: #ff9900"
colorText: "color: #ff9900",
url: "/tasks"
};
this.$emit("tasksCount", dataTasks);
})
Expand Down

0 comments on commit e462fae

Please sign in to comment.