+
{{ $t('logout') }}
diff --git a/frontend/src/components/SidebarPlugin/SidebarItem.vue b/frontend/src/components/SidebarPlugin/SidebarItem.vue
index ab9aec64e..84a722aa3 100755
--- a/frontend/src/components/SidebarPlugin/SidebarItem.vue
+++ b/frontend/src/components/SidebarPlugin/SidebarItem.vue
@@ -111,7 +111,7 @@ export default {
linkPrefix() {
if (this.link.name) {
let words = this.link.name.split(' ')
- return words.map(word => word.substring(0, 1)).join('')
+ return words.map((word) => word.substring(0, 1)).join('')
}
return ''
},
@@ -120,7 +120,7 @@ export default {
},
isActive() {
if (this.$route && this.$route.path) {
- let matchingRoute = this.children.find(c => this.$route.path.startsWith(c.link.path))
+ let matchingRoute = this.children.find((c) => this.$route.path.startsWith(c.link.path))
if (matchingRoute !== undefined) {
return true
}
diff --git a/frontend/src/components/Tabs/Tabs.vue b/frontend/src/components/Tabs/Tabs.vue
index 2a61e6eac..7ba788329 100644
--- a/frontend/src/components/Tabs/Tabs.vue
+++ b/frontend/src/components/Tabs/Tabs.vue
@@ -66,7 +66,7 @@ export default {
type: {
type: String,
default: 'primary',
- validator: value => {
+ validator: (value) => {
let acceptedValues = ['primary', 'info', 'success', 'warning', 'danger']
return acceptedValues.indexOf(value) !== -1
},
@@ -102,7 +102,7 @@ export default {
},
methods: {
findAndActivateTab(title) {
- let tabToActivate = this.tabs.find(t => t.title === title)
+ let tabToActivate = this.tabs.find((t) => t.title === title)
if (tabToActivate) {
this.activateTab(tabToActivate)
}
@@ -115,7 +115,7 @@ export default {
tab.active = true
},
deactivateTabs() {
- this.tabs.forEach(tab => {
+ this.tabs.forEach((tab) => {
tab.active = false
})
},
diff --git a/frontend/src/directives/click-ouside.js b/frontend/src/directives/click-ouside.js
index ce912891a..9661a4e16 100644
--- a/frontend/src/directives/click-ouside.js
+++ b/frontend/src/directives/click-ouside.js
@@ -1,6 +1,6 @@
export default {
- bind: function(el, binding, vnode) {
- el.clickOutsideEvent = function(event) {
+ bind: function (el, binding, vnode) {
+ el.clickOutsideEvent = function (event) {
// here I check that click was outside the el and his childrens
if (!(el == event.target || el.contains(event.target))) {
// and if it did, call method provided in attribute value
@@ -9,7 +9,7 @@ export default {
}
document.body.addEventListener('click', el.clickOutsideEvent)
},
- unbind: function(el) {
+ unbind: function (el) {
document.body.removeEventListener('click', el.clickOutsideEvent)
},
}
diff --git a/frontend/src/i18n.js b/frontend/src/i18n.js
index b5f9a3864..20d578e75 100644
--- a/frontend/src/i18n.js
+++ b/frontend/src/i18n.js
@@ -9,7 +9,7 @@ Vue.use(VueI18n)
function loadLocaleMessages() {
const locales = require.context('./locales', true, /[A-Za-z0-9-_,\s]+\.json$/i)
const messages = {}
- locales.keys().forEach(key => {
+ locales.keys().forEach((key) => {
const matched = key.match(/([A-Za-z0-9-_]+)\./i)
if (matched && matched.length > 1) {
const locale = matched[1]
diff --git a/frontend/src/main.js b/frontend/src/main.js
index 85c64610b..9b5ff9cba 100755
--- a/frontend/src/main.js
+++ b/frontend/src/main.js
@@ -22,5 +22,5 @@ new Vue({
router,
store,
i18n,
- render: h => h(App),
+ render: (h) => h(App),
})
diff --git a/frontend/src/plugins/dashboard-plugin.js b/frontend/src/plugins/dashboard-plugin.js
index 14a4e1d1f..9b6e350dc 100755
--- a/frontend/src/plugins/dashboard-plugin.js
+++ b/frontend/src/plugins/dashboard-plugin.js
@@ -37,7 +37,7 @@ import 'vue-good-table/dist/vue-good-table.css'
import VueMoment from 'vue-moment'
-Object.keys(rules).forEach(rule => {
+Object.keys(rules).forEach((rule) => {
extend(rule, {
...rules[rule], // copies rule configuration
message: messages[rule], // assign message
diff --git a/frontend/src/store/store.js b/frontend/src/store/store.js
index 80ff3035c..5dd321aac 100644
--- a/frontend/src/store/store.js
+++ b/frontend/src/store/store.js
@@ -98,10 +98,10 @@ export const store = new Vuex.Store({
//dispatch('logout')
}
},
- passwordReset: async data => {
+ passwordReset: async (data) => {
//console.log('<<<<<<<<<<< PASSWORT RESET TODO >>>>>>>>>>>', data.email)
},
- schoepfen: async data => {
+ schoepfen: async (data) => {
// http://localhost/transaction-creations/ajaxCreate
},
createUser: async ({ commit, dispatch }, data) => {
diff --git a/frontend/src/views/AdminOverview.vue b/frontend/src/views/AdminOverview.vue
index d26de42c6..c7c3ef6aa 100644
--- a/frontend/src/views/AdminOverview.vue
+++ b/frontend/src/views/AdminOverview.vue
@@ -291,77 +291,77 @@ export default {
methods: {
TransienceList() {
axios.get('/json-example/admin_transience_list.json').then(
- d => {
+ (d) => {
//console.log(d);
this.transiencelist = d.data
},
- error => {
+ (error) => {
//console.log(error)
},
)
},
TransactionList() {
axios.get('/json-example/admin_transaction_list.json').then(
- d => {
+ (d) => {
//console.log(d);
this.transactionlist = d.data
},
- error => {
+ (error) => {
//console.log(error)
},
)
},
UserList() {
axios.get('/json-example/admin_userlist.json').then(
- d => {
+ (d) => {
//console.log(d);
this.userlist = d.data
},
- error => {
+ (error) => {
//console.log(error)
},
)
},
CommunityStatistic() {
axios.get('/json-example/admin_community_statistic.json').then(
- d => {
+ (d) => {
//console.log(d);
this.communitystatistic = d.data
},
- error => {
+ (error) => {
//console.log(error)
},
)
},
ChartsStatistic() {
axios.get('/json-example/admin_charts_statistic.json').then(
- d => {
+ (d) => {
//console.log(d);
this.chartsstatistic = d.data
},
- error => {
+ (error) => {
//console.log(error)
},
)
},
CardStatistic() {
axios.get('/json-example/admin_card_statistic.json').then(
- d => {
+ (d) => {
//console.log(d);
this.cardstatistic = d.data
},
- error => {
+ (error) => {
//console.log(error)
},
)
},
StatisticDatas() {
axios.get('/json-example/admin_statisticdatas.json').then(
- d => {
+ (d) => {
//console.log(d);
this.userdata = d.data
},
- error => {
+ (error) => {
//console.log(error)
},
)
diff --git a/frontend/src/views/AdminOverview/AdminUserCreation.vue b/frontend/src/views/AdminOverview/AdminUserCreation.vue
index d88525bca..c99ced14d 100644
--- a/frontend/src/views/AdminOverview/AdminUserCreation.vue
+++ b/frontend/src/views/AdminOverview/AdminUserCreation.vue
@@ -26,9 +26,7 @@
mode: 'pages',
}"
>
-
- Einträge suchen .
-
+
Einträge suchen .
diff --git a/frontend/src/views/AdminOverview/AdminUserSearch.vue b/frontend/src/views/AdminOverview/AdminUserSearch.vue
index 693da1df1..a06d85766 100644
--- a/frontend/src/views/AdminOverview/AdminUserSearch.vue
+++ b/frontend/src/views/AdminOverview/AdminUserSearch.vue
@@ -25,9 +25,7 @@
mode: 'pages',
}"
>
-
- Mitglieder suchen .
-
+ Mitglieder suchen .
@@ -46,9 +44,7 @@
-
+
@@ -99,9 +93,7 @@