diff --git a/src/HookHandler/PreprocessViewsViewTable.php b/src/HookHandler/PreprocessViewsViewTable.php
index 0e0a93639a3079e523c27d59e2053ac1dc6e0902..f47bcdb2105622b74d7c2195af42e03d6d294f6b 100644
--- a/src/HookHandler/PreprocessViewsViewTable.php
+++ b/src/HookHandler/PreprocessViewsViewTable.php
@@ -85,7 +85,8 @@ class PreprocessViewsViewTable implements ContainerInjectionInterface {
 
           $columnContent = '';
           foreach ($column['content'] as $content) {
-            $columnContent .= $this->renderer->render($content['separator']) . $this->renderer->render($content['field_output']);
+            $columnContent .= isset($content['separator']) ? $this->renderer->render($content['separator']) : '';
+            $columnContent .= isset($content['field_output']) ? $this->renderer->render($content['field_output']) : '';
           }
 
           $variables['rows'][$rowKey]['columns'][$columnKey]['preparedContent'] = [