diff --git a/application/config/cis.php b/application/config/cis.php index b7330ef29..82655f244 100644 --- a/application/config/cis.php +++ b/application/config/cis.php @@ -4,6 +4,6 @@ if (! defined('BASEPATH')) exit('No direct script access allowed'); // CMS Content Id for CIS4 Menu Root -$config['cis_menu_root_content_id'] = 11066; +$config['cis_menu_root_content_id'] = 11087; // send Mails for ProfilUpdate $config['cis_send_profil_update_mails'] = true; diff --git a/public/js/components/Cis/Cms/News.js b/public/js/components/Cis/Cms/News.js index fc8df69b1..f61cd3154 100644 --- a/public/js/components/Cis/Cms/News.js +++ b/public/js/components/Cis/Cms/News.js @@ -41,12 +41,14 @@ export default {
{{vertretungFormatedName(vertretung)}}
- - -{{vertretungFormatedName(vertretung,false)}}
- - -{{vertretungFormatedName(vertretung,false)}}
- + + +{{vertretungFormatedName(vertretung)}}
+ + +{{vertretungFormatedName(vertretung,false)}}
+ + +{{vertretungFormatedName(vertretung,false)}}
+ `, computed:{ @@ -108,23 +111,13 @@ methods:{ { return "tel:".concat(telefone).concat(" "+telefoneklappe); } - else if(telefone) - { - return "tel:".concat(telefone); - } else { - return null; + return telefon ? "tel:".concat(telefone): null; } }, studiengangs_person_email: function (email) { - if (email) - { - return "mailto:".concat(email); - } - else { - return null; - } + return email? "mailto:".concat(email): null; }, }, mounted(){ @@ -132,7 +125,6 @@ mounted(){ .then(res => res.data) .then(studiengangInformationen => { Object.assign(this, studiengangInformationen); - console.log(studiengangInformationen,"das sind die Informationen") }); },