Chore: Update mailer to remove hardcoded twitter link (#1103)
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
const {
|
||||
APP_VERSION: appVersion,
|
||||
CREATE_NEW_ACCOUNT_FROM_DASHBOARD: createNewAccountFromDashboard,
|
||||
BRAND_NAME: brandName,
|
||||
INSTALLATION_NAME: installationName,
|
||||
LOGO_THUMBNAIL: logoThumbnail,
|
||||
LOGO: logo,
|
||||
@@ -12,6 +13,7 @@ const {
|
||||
const state = {
|
||||
appVersion,
|
||||
createNewAccountFromDashboard,
|
||||
brandName,
|
||||
installationName,
|
||||
logo,
|
||||
logoThumbnail,
|
||||
|
||||
@@ -1,18 +1,17 @@
|
||||
<template>
|
||||
<a
|
||||
v-if="globalConfig.brandName"
|
||||
class="branding"
|
||||
:href="`${globalConfig.widgetBrandURL}?utm_source=widget_branding`"
|
||||
rel="noreferrer noopener nofollow"
|
||||
target="_blank"
|
||||
>
|
||||
<img
|
||||
:alt="globalConfig.installationName"
|
||||
:src="globalConfig.logoThumbnail"
|
||||
/>
|
||||
<img :alt="globalConfig.brandName" :src="globalConfig.logoThumbnail" />
|
||||
<span>
|
||||
{{ useInstallationName($t('POWERED_BY'), globalConfig.installationName) }}
|
||||
{{ useInstallationName($t('POWERED_BY'), globalConfig.brandName) }}
|
||||
</span>
|
||||
</a>
|
||||
<div v-else class="brand--alternative" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -58,4 +57,7 @@ export default {
|
||||
max-height: $space-slab;
|
||||
}
|
||||
}
|
||||
.brand--alternative {
|
||||
padding: $space-slab;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user