* [misc] skip @init on check event from node props.

This commit is contained in:
sunhao
2024-06-17 10:51:31 +08:00
committed by 刘刚
parent 97a58bb548
commit 8ce8c072ad
+1 -1
View File
@@ -141,7 +141,7 @@ class props extends \zin\utils\dataset
{
foreach($this->storedData as $name => $value)
{
if(str_starts_with($name, '@')) return true;
if(str_starts_with($name, '@') && $name !== '@init') return true;
}
return false;