Skip to content

Commit

Permalink
2.4.2 workflow 搜索 用户环境变量添加
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaobaidadada committed Feb 3, 2025
1 parent bd4e5f1 commit 2248af2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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.4.1",
"version": "2.4.2",
"description": "filecat 文件管理器",
"author": "xiaobaidadada",
"scripts": {
Expand Down
10 changes: 6 additions & 4 deletions src/web/project/component/file/component/workflow/WorkFlow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,11 @@ export function WorkFlow(props) {
}}
handlerEnter={(v)=>{search_run_name(v)}}
/>
<ActionButton icon={"refresh"} title={t("刷新")} onClick={()=>{}}/>
{/*<ActionButton icon={"refresh"} title={t("刷新")} onClick={()=>{}}/>*/}
</div>}
rightBottomCom={<span className={" div-row "}>
<span>total {total} ;</span>
<span>now {Math.abs(page_num)} </span>
{/*<span>total {total} ;</span>*/}
<span>{Math.abs(page_num)}/{total}</span>
<InputText placeholder={`max page ${max_page_num}`} handleInputChange={(v) => {
input_page_num = parseInt(v);
}}
Expand All @@ -260,7 +260,9 @@ export function WorkFlow(props) {
NotyFail("illegal page num")
return;
}
get_page(0 - input_page_num)
const page = 0 - input_page_num;
set_page_num(page)
get_page(page)
}}
/>
<ActionButton icon={"navigate_before"} onClick={() => {
Expand Down

0 comments on commit 2248af2

Please sign in to comment.