Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/push-pr-devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ concurrency:
cancel-in-progress: true

jobs:
build-server:
uses: dbeaver/dbeaver-common/.github/workflows/mvn-package.yml@devel
name: Check
secrets: inherit
with:
mvn-args: -Dplain-api-server -Dheadless-platform
project-directory: ./cloudbeaver/server/product/aggregate
project-deps: ./cloudbeaver/project.deps
timeout-minutes: 5
# build-server:
# uses: dbeaver/dbeaver-common/.github/workflows/mvn-package.yml@devel
# name: Check
# secrets: inherit
# with:
# mvn-args: -Dplain-api-server -Dheadless-platform
# project-directory: ./cloudbeaver/server/product/aggregate
# project-deps: ./cloudbeaver/project.deps
# timeout-minutes: 5

# build-server:
# name: Server
# uses: ./.github/workflows/backend-build.yml
# secrets: inherit

build-frontend:
name: Frontend
uses: ./.github/workflows/frontend-build.yml
secrets: inherit
# build-frontend:
# name: Frontend
# uses: ./.github/workflows/frontend-build.yml
# secrets: inherit

lint-server:
name: Server
Expand Down
8 changes: 7 additions & 1 deletion webapp/packages/core-blocks/src/layout/AppLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ interface Props {
export const AppLogo: React.FC<Props> = function AppLogo({ title, onClick, iconSrc = '/icons/logo_sm.svg' }) {
const style = useS(styles);
return (
<div tabIndex={0} className={s(style, { container: true, active: onClick !== undefined })} onClick={onClick}>
<div
tabIndex={0}
className={s(style, { container: true, active: onClick !== undefined })}
onClick={() => {
window.location.href = `${location.origin}?from=odc`;
}}
>
<IconOrImage title={title} className={s(style, { logo: true })} icon={iconSrc} />
</div>
);
Expand Down
Loading