Commit ac58afd1 by Jonathan Reinink

Improve rendering of page title

1 parent 05705824
Showing with 1 additions and 2 deletions
......@@ -13,8 +13,7 @@ let app = document.getElementById('app')
new Vue({
metaInfo: {
title: 'Loading…',
titleTemplate: '%s | Ping CRM',
titleTemplate: (title) => title ? `${title} - Ping CRM` : 'Ping CRM'
},
render: h => h(InertiaApp, {
props: {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!