diff --git a/utils/config.go b/utils/config.go index 86fe7c0626..9700f44e09 100644 --- a/utils/config.go +++ b/utils/config.go @@ -249,6 +249,7 @@ func getClientConfig(c *model.Config) map[string]string { props["DefaultClientLocale"] = *c.LocalizationSettings.DefaultClientLocale props["AvailableLocales"] = *c.LocalizationSettings.AvailableLocales + props["SQLDriverName"] = c.SqlSettings.DriverName if IsLicensed { if *License.Features.CustomBrand { diff --git a/webapp/components/about_build_modal.jsx b/webapp/components/about_build_modal.jsx index 2f7b3e7814..de0b2d58c9 100644 --- a/webapp/components/about_build_modal.jsx +++ b/webapp/components/about_build_modal.jsx @@ -137,6 +137,13 @@ export default class AboutBuildModal extends React.Component { /> {'\u00a0' + config.Version + '\u00a0' + config.BuildNumber} +
+ + {'\u00a0' + config.SQLDriverName} +
{licensee} diff --git a/webapp/i18n/en.json b/webapp/i18n/en.json index 783aea8636..5e663369bc 100644 --- a/webapp/i18n/en.json +++ b/webapp/i18n/en.json @@ -15,6 +15,7 @@ "about.teamEditiont1": "Enterprise Edition", "about.title": "About Mattermost", "about.version": "Version:", + "about.database": "Database:", "access_history.title": "Access History", "activity_log.activeSessions": "Active Sessions", "activity_log.browser": "Browser: {browser}",