Refactoring: merge WorkflowParameterEditPanel and WorkflowParameterAddPanel (#3750)

This commit is contained in:
Stanislav Novosad
2025-10-23 11:02:41 -06:00
committed by GitHub
parent a2cef7985d
commit 117b2469e4
4 changed files with 69 additions and 669 deletions

View File

@@ -1,6 +1,6 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react-swc'
import path from 'path'
import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react-swc";
import path from "path";
export default defineConfig({
plugins: [react()],
@@ -9,7 +9,7 @@ export default defineConfig({
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
"@": path.resolve(__dirname, "./src"),
},
},
})
});