* Change priv group create link.

This commit is contained in:
caoyanyi
2023-07-21 17:12:35 +08:00
parent 4090800776
commit 930ee52ece
2 changed files with 5 additions and 8 deletions
-3
View File
@@ -14,7 +14,6 @@ namespace zin;
formPanel
(
set::shadow(!isonlybody()),
set::title($lang->group->create),
formGroup
(
@@ -43,5 +42,3 @@ formPanel
) : null,
set::actions(array('submit'))
);
render();
+5 -5
View File
@@ -23,11 +23,11 @@ toolbar
(
item(set(array
(
'icon' => 'plus',
'text' => $lang->group->create,
'class' => "primary create-project-btn",
'url' => $this->createLink('project', 'createGroup', '', '', true),
'data-modal' => 'modal'
'icon' => 'plus',
'text' => $lang->group->create,
'class' => "primary create-project-btn",
'url' => $this->createLink('project', 'createGroup', "projectID={$projectID}"),
'data-toggle' => 'modal'
)))
);