Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Block/Adminhtml/CaseInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function getCaseGuaranteeDisposition()
*/
public function getCaseScore()
{
return floor($this->getCaseEntity()->getData('score'));
return $this->getCaseEntity()->getData('score') ? floor($this->getCaseEntity()->getData('score')) : '';
}

/**
Expand Down
6 changes: 3 additions & 3 deletions view/frontend/web/js/view/signifyd-fingerprint.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ define([
var me = this;

if (typeof dataOrderSessionId !== 'undefined' && dataOrderSessionId.length > 0) {
console.log('Sending fingerprint...');
//console.log('Sending fingerprint...');

me.callScript(dataOrderSessionId);

Expand All @@ -42,8 +42,8 @@ define([

return true;
} else {
console.log('Will not send fingerprint');
console.log(dataOrderSessionId);
//console.log('Will not send fingerprint');
//console.log(dataOrderSessionId);

return false;
}
Expand Down