Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Rodolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cubicweb
cubes
Rodolf
Merge requests
!48
fix(frontend): use proper env variable for image
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix(frontend): use proper env variable for image
topic/default/image-fix
into
branch/default
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Arnaud Vergnet
requested to merge
topic/default/image-fix
into
branch/default
11 months ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
1
1
Merge request reports
Compare
branch/default
branch/default (base)
and
latest version
latest version
fc4378dc
1 commit,
11 months ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
frontend/src/app/layout.tsx
+
1
−
1
Options
@@ -14,7 +14,7 @@
})
{
const
API_ENDPOINT
=
process
.
env
.
RODOLF_API_URL
;
const
APP_TITLE
=
process
.
env
.
RODOLF_APP_TITLE
;
const
APP_LOGO
=
process
.
env
.
RODOLF_APP_LOGO
;
const
APP_LOGO
=
process
.
env
.
RODOLF_APP_LOGO
_B64
;
if
(
!
API_ENDPOINT
)
{
console
.
error
(
"
No api endpoint configured
"
);
Loading