mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
add admin_document_title
This commit is contained in:
@ -54,7 +54,8 @@
|
||||
"
|
||||
>
|
||||
<p class="mb-3">
|
||||
Copyright @ Crater Invoice, Inc. {{ new Date().getFullYear() }}
|
||||
Copyright @ {{ documentTitle }}, Inc.
|
||||
{{ new Date().getFullYear() }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@ -159,6 +160,14 @@ const pageDescription = computed(() => {
|
||||
return 'Crater helps you track expenses, record payments & generate beautiful invoices & estimates.'
|
||||
})
|
||||
|
||||
const documentTitle = computed(() => {
|
||||
if (window.admin_document_title) {
|
||||
return window.admin_document_title
|
||||
}
|
||||
|
||||
return 'Crater Invoice'
|
||||
})
|
||||
|
||||
const loginPageLogo = computed(() => {
|
||||
if (window.login_page_logo) {
|
||||
return window.login_page_logo
|
||||
|
||||
Reference in New Issue
Block a user