Skip to content

Commit

Permalink
Changes requested by code review
Browse files Browse the repository at this point in the history
Signed-off-by: Eder Ignatowicz <[email protected]>
  • Loading branch information
ederign committed Jun 28, 2024
1 parent 0759562 commit 3e18704
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 19 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ui-bff-build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
name: UI - BFF - Test and Build
on:
push:
branches:
- 'main'
branches: [ "main", "notebooks-v2", "v*-branch" ]
pull_request:
paths-ignore:
- 'LICENSE*'
- 'DOCKERFILE*'
- '**.gitignore'
paths: [ "workspaces/backend/**" ]
branches: [ "main", "notebooks-v2", "v*-branch" ]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/ui-frontend-build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
name: UI - Frontend - Test and Build
on:
push:
branches:
- 'main'
branches: [ "main", "notebooks-v2", "v*-branch" ]
pull_request:
paths-ignore:
- 'LICENSE*'
- 'DOCKERFILE*'
- '**.gitignore'
paths: [ "workspaces/frontend/**" ]
branches: [ "main", "notebooks-v2", "v*-branch" ]
jobs:
test-and-build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion workspaces/backend/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Kubeflow Workspaces Backend
The Kubeflow Workspaces Backend is the _backend for frontend_ (BFF) used by the Kubeflow Workspaces UI as part of [Kubeflow Notebooks 2.0](https://github.com/kubeflow/kubeflow/issues/7156).
The Kubeflow Workspaces Backend is the _backend for frontend_ (BFF) used by the Kubeflow Workspaces Frontend as part of [Kubeflow Notebooks 2.0](https://github.com/kubeflow/kubeflow/issues/7156).

> ⚠️ __Warning__ ⚠️
>
Expand Down
2 changes: 1 addition & 1 deletion workspaces/frontend/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Kubeflow Workspaces Frontend
The Kubeflow Workspaces Frontend is the web application used by the Kubeflow Workspaces as part of [Kubeflow Notebooks 2.0](https://github.com/kubeflow/kubeflow/issues/7156).
The Kubeflow Workspaces Frontend is the web user interface used to monitor and manage Kubeflow Workspaces as part of [Kubeflow Notebooks 2.0](https://github.com/kubeflow/kubeflow/issues/7156).

> ⚠️ __Warning__ ⚠️
>
Expand Down
2 changes: 1 addition & 1 deletion workspaces/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kubeflow-workspaces-frontend",
"version": "0.0.1",
"description": "The Kubeflow Workspaces Frontend is the web application used by the Kubeflow Workspaces as part of Kubeflow Notebooks 2.0",
"description": "The Kubeflow Workspaces Frontend is the web user interface used to monitor and manage Kubeflow Workspaces as part of Kubeflow Notebooks 2.0",
"repository": "https://github.com/kubeflow/notebooks.git",
"homepage": "https://github.com/kubeflow/notebooks",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/frontend/src/app/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const routes: AppRouteConfig[] = [
exact: true,
label: "Dashboard",
path: "/",
title: "Kubeflow Workspaces | Main Dashboard",
title: "Kubeflow Workspaces | Main",
},
{
component: Support,
Expand Down
Binary file added workspaces/frontend/src/favicon.ico
Binary file not shown.
Binary file removed workspaces/frontend/src/favicon.png
Binary file not shown.
2 changes: 1 addition & 1 deletion workspaces/frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Kubeflow Workspaces</title>
<meta content="Kubeflow Workspaces" id="appName" name="application-name">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="/images/favicon.png" rel="icon" type="image/svg+xml">
<link href="/images/favicon.svg" rel="icon" type="image/svg+xml">
<base href="/">
</head>

Expand Down
2 changes: 1 addition & 1 deletion workspaces/frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rootDir": ".",
"outDir": "dist",
"module": "esnext",
"target": "es5",
"target": "ES6",
"lib": [
"es6",
"dom"
Expand Down
2 changes: 1 addition & 1 deletion workspaces/frontend/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ module.exports = (env) => {
silent: true
}),
new CopyPlugin({
patterns: [{ from: './src/favicon.png', to: 'images' }]
patterns: [{ from: './src/favicon.ico', to: 'images' }]
})
],
resolve: {
Expand Down

0 comments on commit 3e18704

Please sign in to comment.