N°6488 - Fix object keyboard shortcut not working anymore due to summary cards stealing its shortcuts

This commit is contained in:
Stephen Abello
2023-07-03 10:56:46 +02:00
parent e36b9eb664
commit c30da57818

View File

@@ -172,4 +172,20 @@ class ObjectSummary extends ObjectDetails
$this->aObjectDisplayValues = $aObjectDisplayValues;
return $this;
}
/**
* @inheritDoc
*/
public static function GetShortcutKeys(): array
{
return [];
}
/**
* @inheritDoc
*/
public static function GetShortcutTriggeredElementSelector(): string
{
return "";
}
}