Skip to content
Snippets Groups Projects
Commit 68aa7c16 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Fix: RWTH Image => Coscine Image (coscine/issues#1743)

parent 7162ec7f
No related branches found
No related tags found
1 merge request!13Sprint/2021 22
...@@ -11,9 +11,9 @@ ...@@ -11,9 +11,9 @@
"lint": "vue-cli-service lint" "lint": "vue-cli-service lint"
}, },
"dependencies": { "dependencies": {
"@coscine/api-connection": "^1.24.2", "@coscine/api-connection": "^1.31.0",
"@coscine/app-util": "^1.8.1", "@coscine/app-util": "^1.9.0",
"@coscine/component-library": "^1.5.0", "@coscine/component-library": "^1.10.0",
"@itcenter-layout/bootstrap": "^1.5.5", "@itcenter-layout/bootstrap": "^1.5.5",
"@itcenter-layout/masterpage": "^1.3.0", "@itcenter-layout/masterpage": "^1.3.0",
"@types/jquery": "^3.5.2", "@types/jquery": "^3.5.2",
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
"core-js": "^3.8.2", "core-js": "^3.8.2",
"eslint": "^7.17.0", "eslint": "^7.17.0",
"semantic-release": "^17.3.1", "semantic-release": "^17.3.1",
"typescript": "^4.0.3", "typescript": "~4.4.4",
"vue-template-compiler": "^2.6.12" "vue-template-compiler": "^2.6.12"
}, },
"repository": { "repository": {
......
<template> <template>
<div id="wrap"> <div id="wrap">
<coscine-page-header <coscine-page-header
:rwthImage="rwthImage" :coscineImage="coscineImage"
:coscineImageBlack="coscineImageBlack" :coscineImageBlack="coscineImageBlack"
:locale="this.$root.$i18n.locale" :locale="this.$root.$i18n.locale"
@changeLocale="changeLocale" @changeLocale="changeLocale"
...@@ -123,7 +123,7 @@ import '@coscine/component-library/dist/index.css'; ...@@ -123,7 +123,7 @@ import '@coscine/component-library/dist/index.css';
import { validationMixin } from 'vuelidate'; import { validationMixin } from 'vuelidate';
import { required, minLength, maxLength, email } from 'vuelidate/lib/validators'; import { required, minLength, maxLength, email } from 'vuelidate/lib/validators';
import rwthImagePath from './assets/logo-rwth.svg'; import coscineImagePath from './assets/logo-rwth.svg';
import linkWhitePath from './assets/link_white.svg'; import linkWhitePath from './assets/link_white.svg';
import mailGreyPath from './assets/mail_grey.svg'; import mailGreyPath from './assets/mail_grey.svg';
import phoneGreyPath from './assets/phone_grey.svg'; import phoneGreyPath from './assets/phone_grey.svg';
...@@ -179,7 +179,7 @@ export default Vue.extend({ ...@@ -179,7 +179,7 @@ export default Vue.extend({
}, },
data() { data() {
return { return {
rwthImage: rootUrl + rwthImagePath, coscineImage: rootUrl + coscineImagePath,
form: { form: {
pid: '', pid: '',
guid: '', guid: '',
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment