diff --git a/core/modules/views/src/Plugin/views/field/Counter.php b/core/modules/views/src/Plugin/views/field/Counter.php index d32e5e7..35fd853 100644 --- a/core/modules/views/src/Plugin/views/field/Counter.php +++ b/core/modules/views/src/Plugin/views/field/Counter.php @@ -19,6 +19,13 @@ class Counter extends FieldPluginBase { /** * {@inheritdoc} */ + public function render(ResultRow $row) { + return parent::render($row); + } + + /** + * {@inheritdoc} + */ public function usesGroupBy() { return FALSE; }