From 185cbd0f608c4887de1df0637b96f457d472df54 Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Wed, 15 Nov 2023 09:03:10 +0800 Subject: [PATCH] * Add limit for design chart. --- module/chart/model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/chart/model.php b/module/chart/model.php index 0194ed7364..6e4f225590 100644 --- a/module/chart/model.php +++ b/module/chart/model.php @@ -647,6 +647,7 @@ class chartModel extends model */ public static function isClickable($chart, $action) { + if($chart->id <= 20015) return false; if($chart->builtin) return false; return true; }