Skip to content

Commit

Permalink
2.9.3 权限展示fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaobaidadada committed Feb 15, 2025
1 parent a857e21 commit 202e647
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "filecat",
"version": "2.9.2",
"version": "2.9.3",
"description": "filecat 文件管理器",
"author": "xiaobaidadada",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions src/web/project/component/setting/component/Permission.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,15 +205,16 @@ export function Permission(props:{
</div>
<div>
<input type="checkbox"
checked={props.is_selected(UserAuth.workflow_exe_user,true)}
checked={props.is_selected(UserAuth.workflow_exe_user, true)}
onChange={() => {
props.select_auth(UserAuth.workflow_exe_user)
}}/>
{t("workflow 执行用户")}
</div>
<div>
<input type="checkbox"
checked={props.is_selected(UserAuth.workflow_api,true)}
disabled={props.is_disable(UserAuth.workflow_api)}
checked={props.is_selected(UserAuth.workflow_api)}
onChange={() => {
props.select_auth(UserAuth.workflow_api)
}}/>
Expand Down

0 comments on commit 202e647

Please sign in to comment.