diff --git a/web/satellite/src/components/account/billing/paymentMethods/TokenDepositSelection.vue b/web/satellite/src/components/account/billing/paymentMethods/TokenDepositSelection.vue index 1c5d5157e..dc0a67364 100644 --- a/web/satellite/src/components/account/billing/paymentMethods/TokenDepositSelection.vue +++ b/web/satellite/src/components/account/billing/paymentMethods/TokenDepositSelection.vue @@ -65,6 +65,7 @@ import {PaymentsHistoryItemType} from "@/types/payments"; diff --git a/web/satellite/src/components/header/HeaderArea.vue b/web/satellite/src/components/header/HeaderArea.vue index 72fbe260f..cab0017ba 100644 --- a/web/satellite/src/components/header/HeaderArea.vue +++ b/web/satellite/src/components/header/HeaderArea.vue @@ -8,7 +8,6 @@ import { Component, Vue } from 'vue-property-decorator'; import NewProjectArea from '@/components/header/NewProjectArea.vue'; import NavigationArea from '@/components/navigation/NavigationArea.vue'; -import ProjectCreationSuccessPopup from '@/components/project/ProjectCreationSuccessPopup.vue'; import LogoIcon from '@/../static/images/header/logo.svg'; import NavigationCloseIcon from '@/../static/images/header/navigationClose.svg'; @@ -18,7 +17,6 @@ import AccountButton from './AccountButton.vue'; @Component({ components: { - ProjectCreationSuccessPopup, NewProjectArea, AccountButton, NavigationArea, diff --git a/web/satellite/src/components/header/NewProjectArea.vue b/web/satellite/src/components/header/NewProjectArea.vue index d5459fe05..d7574b6bd 100644 --- a/web/satellite/src/components/header/NewProjectArea.vue +++ b/web/satellite/src/components/header/NewProjectArea.vue @@ -6,12 +6,11 @@

+ Create Project

- @@ -19,7 +18,6 @@ import { Component, Vue } from 'vue-property-decorator'; import VInfo from '@/components/common/VInfo.vue'; -import NewProjectPopup from '@/components/project/NewProjectPopup.vue'; import { RouteConfig } from '@/router'; import { APP_STATE_ACTIONS } from '@/utils/constants/actionNames'; @@ -29,7 +27,6 @@ import { ProjectOwning } from '@/utils/projectOwning'; @Component({ components: { VInfo, - NewProjectPopup, }, }) export default class NewProjectArea extends Vue { @@ -49,17 +46,10 @@ export default class NewProjectArea extends Vue { } /** - * Opens new project creation popup. + * Redirects to create project page. */ - public toggleSelection(): void { - this.$store.dispatch(APP_STATE_ACTIONS.TOGGLE_NEW_PROJ); - } - - /** - * Indicates if new project creation popup should be rendered. - */ - public get isPopupShown(): boolean { - return this.$store.state.appStateModule.appState.isNewProjectPopupShown; + public onCreateProjectClick(): void { + this.$router.push(RouteConfig.CreateProject.path); } /** diff --git a/web/satellite/src/components/header/headerArea.html b/web/satellite/src/components/header/headerArea.html index 81293ec42..40fb7ce0d 100644 --- a/web/satellite/src/components/header/headerArea.html +++ b/web/satellite/src/components/header/headerArea.html @@ -21,7 +21,6 @@