Renamed Tips & Donations suggestion links (#17618)

refs https://github.com/TryGhost/Product/issues/3665
This commit is contained in:
Sag 2023-08-07 19:04:26 +02:00 committed by GitHub
parent f386a92f98
commit 9aef028c4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -288,7 +288,7 @@ export default class KoenigLexicalEditor extends Component {
if (this.feature.tipsAndDonations) {
if (this.settings.donationsEnabled) {
return [{
label: `Support ${this.settings.title}`,
label: 'Tips & donations',
value: this.config.getSiteUrl('/#/portal/support')
}];
}

View File

@ -86,7 +86,7 @@ export default class KoenigCardButtonComponent extends Component {
if (this.feature.tipsAndDonations) {
if (this.settings.donationsEnabled) {
urls.push({
name: `Support ${this.settings.title}`,
name: 'Tips & donations',
url: this.config.getSiteUrl('/#/portal/support')
});
}

View File

@ -110,7 +110,7 @@ export default class KoenigCardEmailCtaComponent extends Component {
if (this.feature.tipsAndDonations) {
if (this.settings.donationsEnabled) {
urls.push({
name: `Support ${this.settings.title}`,
name: 'Tips & donations',
url: this.config.getSiteUrl('/#/portal/support')
});
}

View File

@ -99,7 +99,7 @@ export default class KoenigCardHeaderComponent extends Component {
if (this.feature.tipsAndDonations) {
if (this.settings.donationsEnabled) {
urls.push({
name: `Support ${this.settings.title}`,
name: 'Tips & donations',
url: this.config.getSiteUrl('/#/portal/support')
});
}