Skip to content
Snippets Groups Projects
Verified Commit d6545683 authored by Martin Weise's avatar Martin Weise
Browse files

Can change the title even without re-building

parent 10caebff
Branches
Tags
4 merge requests!231CI: Remove build for log-service,!228Better error message handling in the frontend,!223Release of version 1.4.0,!211Added more configuration options for frontend
...@@ -8,8 +8,8 @@ ENV API=http://:80 ...@@ -8,8 +8,8 @@ ENV API=http://:80
WORKDIR /app WORKDIR /app
COPY ./package.json ./ COPY ./package.json ./package.json
COPY ./yarn.lock ./ COPY ./yarn.lock ./yarn.lock
# Install yarn dependencies # Install yarn dependencies
RUN yarn install --frozen-lockfile RUN yarn install --frozen-lockfile
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
"ports": [ "ports": [
5672 5672
], ],
"extraInfo": "130.128.0.0/15" "extraInfo": null
} }
}, },
"storage": { "storage": {
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
}, },
"database": { "database": {
"connection": { "connection": {
"extraInfo": "130.128.0.0/15" "extraInfo": null
} }
}, },
"keycloak": { "keycloak": {
......
...@@ -539,6 +539,11 @@ export default { ...@@ -539,6 +539,11 @@ export default {
return this.dynamicFieldsMap()[this.advancedSearchData.type].includes(item.attribute_name) return this.dynamicFieldsMap()[this.advancedSearchData.type].includes(item.attribute_name)
} }
}, },
head () {
return {
title: this.$config.title
}
},
provide () { provide () {
return { return {
advancedSearchData: this.advancedSearchData advancedSearchData: this.advancedSearchData
......
...@@ -281,6 +281,8 @@ services: ...@@ -281,6 +281,8 @@ services:
hostname: ui hostname: ui
image: dbrepo-ui:latest image: dbrepo-ui:latest
build: ./dbrepo-ui build: ./dbrepo-ui
volumes:
- ./dbrepo.config.json:/app/dbrepo.config.json
depends_on: depends_on:
dbrepo-search-service: dbrepo-search-service:
condition: service_started condition: service_started
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment