From 78861e0a0af0fa1693c1f9b7719a32f6d02d5bdc Mon Sep 17 00:00:00 2001 From: zaelgohary Date: Thu, 15 Jun 2023 11:35:52 +0300 Subject: [PATCH] Edit action in contract list to be eye icon --- .../playground/src/weblets/tf_contracts_list.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/playground/src/weblets/tf_contracts_list.vue b/packages/playground/src/weblets/tf_contracts_list.vue index cc3fa5f50b..4c8f288a63 100644 --- a/packages/playground/src/weblets/tf_contracts_list.vue +++ b/packages/playground/src/weblets/tf_contracts_list.vue @@ -53,9 +53,9 @@ @@ -130,6 +128,7 @@ import { ContractStates } from "@threefold/grid_client"; import { ref } from "vue"; +import IconActionBtn from "../components/icon_action_btn.vue"; import { useProfileManager } from "../stores"; import type { VDataTableHeader } from "../types"; import { getUserContracts, type NormalizedContract } from "../utils/contracts"; @@ -248,6 +247,7 @@ export default { name: "TfContractsList", components: { ListTable, + IconActionBtn, }, };