diff options
Diffstat (limited to 'apps/oauth2/src')
-rw-r--r-- | apps/oauth2/src/App.vue | 2 | ||||
-rw-r--r-- | apps/oauth2/src/main.js | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index 036af6ca25f..58ea4b819a6 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -22,7 +22,7 @@ <template> <div id="oauth2" class="section"> <h2>{{ t('oauth2', 'OAuth 2.0 clients') }}</h2> - <p class="settings-hint">{{ t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: oc_defaults.name}) }}</p> + <p class="settings-hint">{{ t('oauth2', 'OAuth 2.0 allows external services to request access to {instanceName}.', { instanceName: OC.theme.name}) }}</p> <table class="grid" v-if="clients.length > 0"> <thead> <tr> diff --git a/apps/oauth2/src/main.js b/apps/oauth2/src/main.js index ff68f48593d..b200347d901 100644 --- a/apps/oauth2/src/main.js +++ b/apps/oauth2/src/main.js @@ -24,7 +24,6 @@ import Vue from 'vue'; import App from './App.vue'; Vue.prototype.t = t; -Vue.prototype.oc_defaults = oc_defaults; Vue.prototype.OC = OC; const app = new Vue({ |