Skip to content
Snippets Groups Projects
Commit dbfdc5ca authored by Leah Tacke genannt Unterberg's avatar Leah Tacke genannt Unterberg
Browse files

fixed two tiny things

parent 31429ac0
No related branches found
No related tags found
No related merge requests found
Pipeline #480120 failed
......@@ -14,7 +14,7 @@ docker-build:
- docker build --pull -t "$DOCKER_IMAGE_NAME" .
- docker push "$DOCKER_IMAGE_NAME"
- |
if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then
if [[ "$CI_COMMIT_BRANCH" == "release" ]]; then
docker tag "$DOCKER_IMAGE_NAME" "$CI_REGISTRY_IMAGE:latest"
docker push "$CI_REGISTRY_IMAGE:latest"
fi
......
......@@ -67,7 +67,7 @@ export const usePresetStore = defineStore('presets', () => {
table_creation: {operation: 'raw', typed_query: view}
} as VirtualViewCreation))
const concept_mappings = [...Object.values(mapping.currentMappings)]
const concept_mappings = [...Object.values(mapping.currentMappings).map(cm => cm.mapping)]
const presetEntry: PresetEntry = {
props: {title: name.toLocaleUpperCase(), value: name},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment