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
......@@ -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;
......
......@@ -126,6 +126,10 @@
min-height: inherit !important;
}
.card.card-comment .card-footer button {
top: 0;
}
/**********
Record view
**********/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment