diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 6d48fa18..f2fa2418 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -7,6 +7,7 @@ permissions: write-all jobs: build-artifacts: + name: Build strategy: fail-fast: false matrix: @@ -37,7 +38,7 @@ jobs: key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }} - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 cache: 'npm' - name: install dependencies (ubuntu only) if: matrix.os == 'ubuntu-20.04' diff --git a/src-web/components/CreateDropdown.tsx b/src-web/components/CreateDropdown.tsx index 3dd32205..17dd05f6 100644 --- a/src-web/components/CreateDropdown.tsx +++ b/src-web/components/CreateDropdown.tsx @@ -8,16 +8,17 @@ import { Dropdown } from './core/Dropdown'; interface Props { hideFolder?: boolean; children: DropdownProps['children']; + openOnHotKeyAction?: DropdownProps['openOnHotKeyAction']; } -export function CreateDropdown({ hideFolder, children }: Props) { +export function CreateDropdown({ hideFolder, children, openOnHotKeyAction }: Props) { const createHttpRequest = useCreateHttpRequest(); const createGrpcRequest = useCreateGrpcRequest(); const createFolder = useCreateFolder(); return ( - +