Problem:
TypeError: Cannot assign null to property Drupal\views\Plugin\views\argument\ArgumentPluginBase::$operator of type string in Drupal\views\Plugin\views\argument\NumericArgument->title() (line 63 of web/core/modules/views/src/Plugin/views/argument/NumericArgument.php).
Comments
Line 63, 99 : - $this-… Do, 03/07/2024 - 21:34
Line 63, 99 :
- $this->operator = $break->operator; + if($break->operator){ + $this->operator = $break->operator; + }
It works too: web/core… Mi, 06/12/2024 - 20:47
It works too:
Line 63, 96 :
- $this->operator = $break->operator; + $this->operator = $break->operator ?? '' ;
Das geht auch: $this-… Di, 06/25/2024 - 00:00
Das geht auch:
$this->operator = $break->operator ?? '' ;
Neuen Kommentar schreiben