Skip to content
Snippets Groups Projects
Commit ae374e0b authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Fix page comment "send button" layout

parent 664d7ec0
No related branches found
No related tags found
No related merge requests found
Pipeline #7785 failed
...@@ -393,12 +393,12 @@ function TransferModalController($scope, $q, $translate, $timeout, $filter, $foc ...@@ -393,12 +393,12 @@ function TransferModalController($scope, $q, $translate, $timeout, $filter, $foc
return Modals.showWotLookup({enableWallets: true}) return Modals.showWotLookup({enableWallets: true})
.then(function(result){ .then(function(result){
if (result) { if (result) {
if (formDataField == 'destPub') { if (formDataField === 'destPub') {
$scope.destUid = result.uid; $scope.destUid = result.uid;
$scope.destPub = result.uid ? '' : result.pubkey; $scope.destPub = result.uid ? '' : result.pubkey;
$scope.formData.destPub = result.pubkey; $scope.formData.destPub = result.pubkey;
} }
else if (formDataField == 'restPub') { else if (formDataField === 'restPub') {
$scope.restUid = result.uid; $scope.restUid = result.uid;
$scope.restPub = result.uid ? '' : result.pubkey; $scope.restPub = result.uid ? '' : result.pubkey;
$scope.formData.restPub = result.pubkey; $scope.formData.restPub = result.pubkey;
......
...@@ -126,6 +126,10 @@ ...@@ -126,6 +126,10 @@
min-height: inherit !important; min-height: inherit !important;
} }
.card.card-comment .card-footer button {
top: 0;
}
/********** /**********
Record view Record view
**********/ **********/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment