diff --git a/frontend/src/components/Inputs/BaseInput.vue b/frontend/src/components/Inputs/BaseInput.vue
deleted file mode 100644
index c43e0a265..000000000
--- a/frontend/src/components/Inputs/BaseInput.vue
+++ /dev/null
@@ -1,187 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ successMessage }}
-
-
-
-
- {{ errors[0] }}
-
-
-
-
-
-
-
diff --git a/frontend/src/components/index.js b/frontend/src/components/index.js
index 6e3e3f01c..d35e88859 100755
--- a/frontend/src/components/index.js
+++ b/frontend/src/components/index.js
@@ -1,4 +1,3 @@
-import BaseInput from './Inputs/BaseInput.vue'
import Badge from './Badge'
import BaseTable from './BaseTable.vue'
@@ -18,7 +17,6 @@ import SidebarPlugin from './SidebarPlugin'
export {
Badge,
- BaseInput,
Card,
StatsCard,
BaseTable,
diff --git a/frontend/src/plugins/globalComponents.js b/frontend/src/plugins/globalComponents.js
index bea56050b..1f3acef96 100755
--- a/frontend/src/plugins/globalComponents.js
+++ b/frontend/src/plugins/globalComponents.js
@@ -1,4 +1,3 @@
-import BaseInput from '@/components/Inputs/BaseInput.vue'
import Card from '@/components/Cards/Card.vue'
import StatsCard from '@/components/Cards/StatsCard.vue'
import Badge from '@/components/Badge.vue'
@@ -8,7 +7,6 @@ import { ValidationProvider, ValidationObserver } from 'vee-validate'
const GlobalComponents = {
install(Vue) {
Vue.component(Badge.name, Badge)
- Vue.component(BaseInput.name, BaseInput)
Vue.component(BaseNav.name, BaseNav)
Vue.component(Card.name, Card)
Vue.component(StatsCard.name, StatsCard)
diff --git a/frontend/src/views/Pages/AccountOverview/GddAddWork2.vue b/frontend/src/views/Pages/AccountOverview/GddAddWork2.vue
index 419742874..d66eaf2df 100644
--- a/frontend/src/views/Pages/AccountOverview/GddAddWork2.vue
+++ b/frontend/src/views/Pages/AccountOverview/GddAddWork2.vue
@@ -4,32 +4,32 @@
-
+
-
-
+
+
-
+
-
+
-
+
@@ -147,32 +147,32 @@ export default {
newWorkForm() {
this.formular = `
-
+
-
-
+
+
-
+
-
+
-
+
`
diff --git a/frontend/test/testSetup.js b/frontend/test/testSetup.js
index fb3ff5542..c2e59dbee 100644
--- a/frontend/test/testSetup.js
+++ b/frontend/test/testSetup.js
@@ -5,7 +5,6 @@ import { ValidationProvider, ValidationObserver, extend } from 'vee-validate'
import * as rules from 'vee-validate/dist/rules'
import { messages } from 'vee-validate/dist/locale/en.json'
-import BaseInput from '@/components/Inputs/BaseInput.vue'
import RegeneratorRuntime from 'regenerator-runtime'
import Notifications from '@/components/NotificationPlugin'
import SideBar from '@/components/SidebarPlugin'
@@ -36,7 +35,6 @@ global.localVue.use(SideBar)
global.localVue.use(VueRouter)
global.localVue.use(VueQrcode)
global.localVue.use(VueMoment)
-global.localVue.component(BaseInput.name, BaseInput)
global.localVue.component('validation-provider', ValidationProvider)
global.localVue.component('validation-observer', ValidationObserver)
global.localVue.component(StatsCard.name, StatsCard)