diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-14 11:46:45 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-16 09:50:24 +0200 |
commit | bcffbab6f8afb29c9e5c8ef9861739febdb06a09 (patch) | |
tree | b75148ede02a86873c03a471ba3dbe1a12f64ad8 /settings/src | |
parent | 549940ddb9643a57a0900aa002b49276e5d20d9b (diff) | |
download | nextcloud-server-bcffbab6f8afb29c9e5c8ef9861739febdb06a09.tar.gz nextcloud-server-bcffbab6f8afb29c9e5c8ef9861739febdb06a09.zip |
IE11 compatibility
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/src')
-rw-r--r-- | settings/src/main.js | 2 | ||||
-rw-r--r-- | settings/src/views/Users.vue | 12 |
2 files changed, 6 insertions, 8 deletions
diff --git a/settings/src/main.js b/settings/src/main.js index a03fe1b16e1..e09925a95de 100644 --- a/settings/src/main.js +++ b/settings/src/main.js @@ -3,6 +3,8 @@ import { sync } from 'vuex-router-sync'; import App from './App.vue'; import router from './router'; import store from './store'; +require("babel-polyfill"); + sync(store, router); diff --git a/settings/src/views/Users.vue b/settings/src/views/Users.vue index 0f74b76e38c..d154ebc03f9 100644 --- a/settings/src/views/Users.vue +++ b/settings/src/views/Users.vue @@ -13,23 +13,19 @@ </div> <div> - <input type="checkbox" id="showLanguages" class="checkbox" - :checked="showLanguages" v-model="showLanguages"> + <input type="checkbox" id="showLanguages" class="checkbox" v-model="showLanguages"> <label for="showLanguages">{{t('settings', 'Show Languages')}}</label> </div> <div> - <input type="checkbox" id="showLastLogin" class="checkbox" - :checked="showLastLogin" v-model="showLastLogin"> + <input type="checkbox" id="showLastLogin" class="checkbox" v-model="showLastLogin"> <label for="showLastLogin">{{t('settings', 'Show last login')}}</label> </div> <div> - <input type="checkbox" id="showUserBackend" class="checkbox" - :checked="showUserBackend" v-model="showUserBackend"> + <input type="checkbox" id="showUserBackend" class="checkbox" v-model="showUserBackend"> <label for="showUserBackend">{{t('settings', 'Show user backend')}}</label> </div> <div> - <input type="checkbox" id="showStoragePath" class="checkbox" - :checked="showStoragePath" v-model="showStoragePath"> + <input type="checkbox" id="showStoragePath" class="checkbox" v-model="showStoragePath"> <label for="showStoragePath">{{t('settings', 'Show storage path')}}</label> </div> </template> |