From ae374e0b1d2765f1acf6b56161ce27e76bafdf05 Mon Sep 17 00:00:00 2001
From: blavenie <benoit.lavenier@e-is.pro>
Date: Mon, 20 Jan 2020 22:56:03 +0100
Subject: [PATCH] [fix] Fix page comment "send button" layout

---
 www/js/controllers/transfer-controllers.js | 4 ++--
 www/plugins/es/css/style.css               | 4 ++++
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/www/js/controllers/transfer-controllers.js b/www/js/controllers/transfer-controllers.js
index cedbccf9..ad1f6453 100644
--- a/www/js/controllers/transfer-controllers.js
+++ b/www/js/controllers/transfer-controllers.js
@@ -393,12 +393,12 @@ function TransferModalController($scope, $q, $translate, $timeout, $filter, $foc
     return Modals.showWotLookup({enableWallets: true})
       .then(function(result){
         if (result) {
-          if (formDataField == 'destPub') {
+          if (formDataField === 'destPub') {
             $scope.destUid = result.uid;
             $scope.destPub = result.uid ? '' : result.pubkey;
             $scope.formData.destPub = result.pubkey;
           }
-          else if (formDataField == 'restPub') {
+          else if (formDataField === 'restPub') {
             $scope.restUid = result.uid;
             $scope.restPub = result.uid ? '' : result.pubkey;
             $scope.formData.restPub = result.pubkey;
diff --git a/www/plugins/es/css/style.css b/www/plugins/es/css/style.css
index 2ab89803..a0891f9d 100644
--- a/www/plugins/es/css/style.css
+++ b/www/plugins/es/css/style.css
@@ -126,6 +126,10 @@
   min-height: inherit !important;
 }
 
+.card.card-comment .card-footer button {
+  top: 0;
+}
+
 /**********
    Record view
 **********/
-- 
GitLab