diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 5cd0482a53..7b4069ce06 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -54,10 +54,11 @@ jobs: registry-url: 'https://registry.npmjs.org' - run: | export NODE_OPTIONS="--max_old_space_size=16384" - export NOCODB_SDK_PKG_NAME=nocodb-sdk + export NOCODB_SDK_PKG_NAME="nocodb-sdk" if [[ "${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }}" ]]; then export NOCODB_SDK_PKG_NAME=nocodb-sdk-daily fi + echo ${NOCODB_SDK_PKG_NAME} targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNocodbSdkVersion.js && pnpm --filter=${NOCODB_SDK_PKG_NAME} install --ignore-scripts --no-frozen-lockfile && pnpm --filter=${NOCODB_SDK_PKG_NAME} run build && pnpm --filter=${NOCODB_SDK_PKG_NAME} publish --no-git-checks && sleep 90 && diff --git a/packages/nc-gui/assets/style.scss b/packages/nc-gui/assets/style.scss index cbeb575b6e..c317f29f0c 100644 --- a/packages/nc-gui/assets/style.scss +++ b/packages/nc-gui/assets/style.scss @@ -603,7 +603,7 @@ input[type='number'] { } .nc-sidebar-node { - @apply !xs:(min-h-12 max-h-12 hover:bg-gray-50 ml-1.5); + @apply !xs:(min-h-12 max-h-12 hover:bg-gray-50 ml-1.5 w-[calc(100%-8px)]); .nc-emoji { @apply xs:(text-lg); diff --git a/packages/nc-gui/store/sidebar.ts b/packages/nc-gui/store/sidebar.ts index 0603ceb76e..9bad365ce1 100644 --- a/packages/nc-gui/store/sidebar.ts +++ b/packages/nc-gui/store/sidebar.ts @@ -12,7 +12,7 @@ export const useSidebarStore = defineStore('sidebarStore', () => { const _isLeftSidebarOpen = ref(!isViewPortMobile()) const isLeftSidebarOpen = computed({ get() { - return (isMobileMode && !tablesStore.activeTableId) || _isLeftSidebarOpen.value + return (isMobileMode.value && !tablesStore.activeTableId) || _isLeftSidebarOpen.value }, set(value) { _isLeftSidebarOpen.value = value