Commit 77f8fdce authored by Sharayu Rajput's avatar Sharayu Rajput Committed by Dmitry Kiselev
Browse files

Issue #3315996 by sharayurajput, erikaagp, kala4ek: A comma should follow the...

Issue #3315996 by sharayurajput, erikaagp, kala4ek: A comma should follow the last multiline array item. Found: ]
parent f8363e0f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ class BeSureController extends ControllerBase {
          ],
          'style' => [
            'width' => "{$total_percentage}%",
          ]
          ],
        ],
      ];
      $contents[] = [
+2 −2
Original line number Diff line number Diff line
@@ -24,13 +24,13 @@ function template_preprocess_be_sure_element(&$variables) {
      ],
      'style' => [
        'width' => "{$percent}%",
      ]
      ],
    ],
    '#message' => t(
      '@passed/@total issues resolved',
      [
        '@passed' => $variables['passed'],
        '@total' => count($variables['items'])
        '@total' => count($variables['items']),
      ]
    ),
  ];