mirror of
https://github.com/espocrm/espocrm.git
synced 2026-03-03 02:27:01 +00:00
Merge pull request #3540 from ShaikhNaasir/fix-error
Remove double semicolons
This commit is contained in:
@@ -89,7 +89,7 @@ class BuilderHelper
|
||||
/** @var ?array<string, mixed> $fields */
|
||||
$fields = $typeDefs['fields'] ?? null;
|
||||
/** @var string $naming */
|
||||
$naming = $typeDefs['naming'] ?? $this->defaultFieldNaming;;
|
||||
$naming = $typeDefs['naming'] ?? $this->defaultFieldNaming;
|
||||
|
||||
if (!is_array($fields)) {
|
||||
return null;
|
||||
|
||||
@@ -44,7 +44,7 @@ export default class extends EnumFieldView {
|
||||
const data = super.data();
|
||||
|
||||
data.valueIsSet = this.model.has('inboundEmailId');
|
||||
data.isNotEmpty = this.model.has('inboundEmailId');;
|
||||
data.isNotEmpty = this.model.has('inboundEmailId');
|
||||
|
||||
data.value = this.getValueForDisplay();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user