diff --git a/frontend/.eslintrc.js b/frontend/.eslintrc.js
index d45322c39..da2182c54 100644
--- a/frontend/.eslintrc.js
+++ b/frontend/.eslintrc.js
@@ -55,12 +55,7 @@ module.exports = {
'settings.password.set-password.text',
'settings.password.subtitle',
'math.asterisk',
- 'pageTitle.overview',
- 'pageTitle.send',
- 'pageTitle.transactions',
- 'pageTitle.gdt',
- 'pageTitle.community',
- 'pageTitle.settings',
+ '/pageTitle./',
],
enableFix: false,
},
diff --git a/frontend/src/assets/scss/gradido-template.scss b/frontend/src/assets/scss/gradido-template.scss
index 0641d3f60..59b461dce 100644
--- a/frontend/src/assets/scss/gradido-template.scss
+++ b/frontend/src/assets/scss/gradido-template.scss
@@ -117,10 +117,6 @@ a:hover,
height: 50px;
}
-// .rounded-right-17 {
-// border-top-right-radius: 17px !important;
-// border-bottom-right-radius: 17px !important;
-// }
.input-group .rounded-right {
border-top-right-radius: 17px !important;
border-bottom-right-radius: 17px !important;
@@ -293,13 +289,6 @@ a:hover,
}
.pulse {
- // margin:100px;
- // display: block;
- // width: 22px;
- // height: 22px;
- // border-radius: 50%;
- // background: #cca92c;
- // cursor: pointer;
box-shadow: 0 0 0 #c58d38;
animation: pulse 2s infinite;
}
diff --git a/frontend/src/components/Breadcrumb/breadcrumb.vue b/frontend/src/components/Breadcrumb/breadcrumb.vue
index 8636a7b8a..6eb3368e7 100644
--- a/frontend/src/components/Breadcrumb/breadcrumb.vue
+++ b/frontend/src/components/Breadcrumb/breadcrumb.vue
@@ -1,18 +1,6 @@
-
{{ pageTitle }}
-
diff --git a/frontend/src/routes/router.test.js b/frontend/src/routes/router.test.js
index 2fb43612d..dff97d160 100644
--- a/frontend/src/routes/router.test.js
+++ b/frontend/src/routes/router.test.js
@@ -86,16 +86,16 @@ describe('router', () => {
})
})
- // describe('profile', () => {
- // it('requires authorization', () => {
- // expect(routes.find((r) => r.path === '/profile').meta.requiresAuth).toBeTruthy()
- // })
+ describe.skip('profile', () => {
+ it('requires authorization', () => {
+ expect(routes.find((r) => r.path === '/profile').meta.requiresAuth).toBeTruthy()
+ })
- // it('loads the "Profile" page', async () => {
- // const component = await routes.find((r) => r.path === '/profile').component()
- // expect(component.default.name).toBe('Profile')
- // })
- // })
+ it('loads the "Profile" page', async () => {
+ const component = await routes.find((r) => r.path === '/profile').component()
+ expect(component.default.name).toBe('Profile')
+ })
+ })
describe('transactions', () => {
it('requires authorization', () => {
@@ -178,12 +178,12 @@ describe('router', () => {
})
})
- // describe('select-community', () => {
- // it('loads the "SelectCommunity" page', async () => {
- // const component = await routes.find((r) => r.path === '/select-community').component()
- // expect(component.default.name).toBe('SelectCommunity')
- // })
- // })
+ describe.skip('select-community', () => {
+ it('loads the "SelectCommunity" page', async () => {
+ const component = await routes.find((r) => r.path === '/select-community').component()
+ expect(component.default.name).toBe('SelectCommunity')
+ })
+ })
describe('reset password', () => {
it('loads the "ResetPassword" page', async () => {