Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve: code upgrade #4231

Merged
merged 25 commits into from
May 13, 2024
Rate limit · GitHub

Whoa there!

You have triggered an abuse detection mechanism.

Please wait a few minutes before you try again;
in some cases this may take up to an hour.

Prev Previous commit
Next Next commit
fix: typo
Rate limit · GitHub

Whoa there!

You have triggered an abuse detection mechanism.

Please wait a few minutes before you try again;
in some cases this may take up to an hour.

Yeuoly committed May 10, 2024
commit 18601e4f690b694f99a3d18e5c8ee429b5cee407
2 changes: 1 addition & 1 deletion web/app/components/workflow/nodes/code/panel.tsx
Original file line number Diff line number Diff line change
@@ -91,7 +91,7 @@ const Panel: FC<NodePanelProps<CodeNodeType>> = ({
<Split />
<div className='pt-4'>
<Field
title={t(`${i18nPrefix}.advanceDependencies`)}
title={t(`${i18nPrefix}.advancedDependencies`)}
operations={
<AddButton onClick={() => handleAddDependency({ name: '', version: '' })} />
}
4 changes: 2 additions & 2 deletions web/i18n/en-US/workflow.ts
Original file line number Diff line number Diff line change
@@ -273,8 +273,8 @@ const translation = {
code: {
inputVars: 'Input Variables',
outputVars: 'Output Variables',
advanceDependencies: 'Advance Dependencies',
advanceDependenciesTip: 'Add some heavy dependencies here, native and light dependencies are already included',
advancedDependencies: 'Advanced Dependencies',
advancedDependenciesTip: 'Add some heavy dependencies here, standard and light dependencies are already included',
searchDependencies: 'Search Dependencies',
},
templateTransform: {
4 changes: 2 additions & 2 deletions web/i18n/zh-Hans/workflow.ts
Original file line number Diff line number Diff line change
@@ -273,8 +273,8 @@ const translation = {
code: {
inputVars: '输入变量',
outputVars: '输出变量',
advanceDependencies: '高级依赖',
advanceDependenciesTip: '在这里添加一些比较重的依赖包,原生包和一切轻量的包不需要单独添加',
advancedDependencies: '高级依赖',
advancedDependenciesTip: '在这里添加一些比较重的依赖包,标准包和轻量的包不需要单独添加',
searchDependencies: '搜索依赖',
},
templateTransform: {
Rate limit · GitHub

Whoa there!

You have triggered an abuse detection mechanism.

Please wait a few minutes before you try again;
in some cases this may take up to an hour.