From 7d37d55e8845aa1e4fb716e59c96ea0018923433 Mon Sep 17 00:00:00 2001 From: Mahmoud Emad Date: Sun, 21 Apr 2024 09:21:51 +0200 Subject: [PATCH] Enhancements: - Removed the hard-coded cost balance and make it variable instead - Updated the @click:row event - Removed unneeded alert message --- .../playground/src/components/ssh_keys/SshFormDialog.vue | 7 ++----- packages/playground/src/components/ssh_keys/SshTable.vue | 7 +------ 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/packages/playground/src/components/ssh_keys/SshFormDialog.vue b/packages/playground/src/components/ssh_keys/SshFormDialog.vue index e27d6dd7e9..ff93261dbe 100644 --- a/packages/playground/src/components/ssh_keys/SshFormDialog.vue +++ b/packages/playground/src/components/ssh_keys/SshFormDialog.vue @@ -32,7 +32,7 @@ {{ $props.dialogType === SSHCreationMethod.Generate ? "Generating" : "Importing" }} - a new SSH key will cost you up to 0.01 TFT + a new SSH key will cost you up to {{ sshKeysManagement.updateCost }} TFT
@@ -98,14 +98,12 @@