Skip to content
Extraits de code Groupes Projets
Valider 8ac2f6cf rédigé par Benaka Moorthi's avatar Benaka Moorthi
Parcourir les fichiers

Fixing one of the integration tests.

parent 7b65ca25
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -629,7 +629,17 @@ class DataTable ...@@ -629,7 +629,17 @@ class DataTable
public function addSummaryRow(Row $row) public function addSummaryRow(Row $row)
{ {
$this->summaryRow = $row; $this->summaryRow = $row;
$this->rowsIndexByLabel[$row->getColumn('label')] = self::ID_SUMMARY_ROW;
// add summary row to index
if (!$this->indexNotUpToDate
&& $this->rebuildIndexContinuously
) {
$label = $row->getColumn('label');
if ($label !== false) {
$this->rowsIndexByLabel[$label] = self::ID_SUMMARY_ROW;
}
}
return $row; return $row;
} }
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter