82
82
:return-object ='false'
83
83
:hint ='$t(`admin:general.contentLicenseHint`)'
84
84
persistent-hint
85
+ )
86
+ v-text-field.mt-3 (
87
+ outlined
88
+ :label ='$t(`admin:general.footerOverride`)'
89
+ v-model ='config.footerOverride'
90
+ prepend-icon ='mdi-page-layout-footer'
91
+ persistent-hint
92
+ :hint ='$t(`admin:general.footerOverrideHint`)'
85
93
)
86
94
v-divider
87
95
.overline.grey--text.pa-4 SEO
@@ -280,6 +288,7 @@ export default {
280
288
analyticsId: ' ' ,
281
289
company: ' ' ,
282
290
contentLicense: ' ' ,
291
+ footerOverride: ' ' ,
283
292
logoUrl: ' ' ,
284
293
featureAnalytics: false ,
285
294
featurePageRatings: false ,
@@ -308,6 +317,7 @@ export default {
308
317
logoUrl: sync (' site/logoUrl' ),
309
318
company: sync (' site/company' ),
310
319
contentLicense: sync (' site/contentLicense' ),
320
+ footerOverride: sync (' site/footerOverride' ),
311
321
activeModal: sync (' editor/activeModal' ),
312
322
contentLicenses () {
313
323
return [
@@ -346,6 +356,7 @@ export default {
346
356
$analyticsId : String
347
357
$company : String
348
358
$contentLicense : String
359
+ $footerOverride : String
349
360
$logoUrl : String
350
361
$pageExtensions : String
351
362
$featurePageRatings : Boolean
@@ -369,6 +380,7 @@ export default {
369
380
analyticsId : $analyticsId
370
381
company : $company
371
382
contentLicense : $contentLicense
383
+ footerOverride : $footerOverride
372
384
logoUrl : $logoUrl
373
385
pageExtensions : $pageExtensions
374
386
featurePageRatings : $featurePageRatings
@@ -401,6 +413,7 @@ export default {
401
413
analyticsId: _ .get (this .config , ' analyticsId' , ' ' ),
402
414
company: _ .get (this .config , ' company' , ' ' ),
403
415
contentLicense: _ .get (this .config , ' contentLicense' , ' ' ),
416
+ footerOverride: _ .get (this .config , ' footerOverride' , ' ' ),
404
417
logoUrl: _ .get (this .config , ' logoUrl' , ' ' ),
405
418
pageExtensions: _ .get (this .config , ' pageExtensions' , ' ' ),
406
419
featurePageRatings: _ .get (this .config , ' featurePageRatings' , false ),
@@ -426,6 +439,7 @@ export default {
426
439
this .siteTitle = this .config .title
427
440
this .company = this .config .company
428
441
this .contentLicense = this .config .contentLicense
442
+ this .footerOverride = this .config .footerOverride
429
443
this .logoUrl = this .config .logoUrl
430
444
} catch (err) {
431
445
this .$store .commit (' pushGraphError' , err)
@@ -461,6 +475,7 @@ export default {
461
475
analyticsId
462
476
company
463
477
contentLicense
478
+ footerOverride
464
479
logoUrl
465
480
pageExtensions
466
481
featurePageRatings
0 commit comments