Commit 9e0696a7 authored by Odai Atieh's avatar Odai Atieh Committed by Mahmoud Zayed
Browse files

Issue #3276174 by Ahmad Abbad, Qusai Taha, Odai Atieh: Undefined array key

parent 2aac5f54
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ class Breakpoint extends ConfigEntityBase implements BreakpointInterface {
    // Full width case.
    $sufix = '12';
    if (count($strucutre) > 1) {
      $sufix = $strucutre[$key];
      $sufix = (isset($strucutre[$key])) ? $strucutre[$key] : $strucutre[0];
    }
    $class = $this->getBaseClass() . '-' . $sufix;
    return $class;