Skip to content

Commit e6ac740

Browse files
committed
refactor(ui): rename SnackbarNew to Snackbar
1 parent fdf3458 commit e6ac740

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ui/src/layouts/AppLayout.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
</v-list>
118118
</v-navigation-drawer>
119119

120-
<SnackbarNew />
120+
<Snackbar />
121121

122122
<AppBar v-model="showNavigationDrawer" data-test="app-bar" />
123123

@@ -164,7 +164,7 @@ import Namespace from "@/components/Namespace/Namespace.vue";
164164
import AppBar from "../components/AppBar/AppBar.vue";
165165
import QuickConnection from "../components/QuickConnection/QuickConnection.vue";
166166
import NamespaceAdd from "@/components/Namespace/NamespaceAdd.vue";
167-
import SnackbarNew from "@/components/Snackbar/SnackbarNew.vue";
167+
import Snackbar from "@/components/Snackbar/Snackbar.vue";
168168
169169
const router = useRouter();
170170
const store = useStore();

ui/src/layouts/LoginLayout.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<v-app>
3-
<SnackbarNew />
3+
<Snackbar />
44
<v-main class="d-flex justify-center align-center">
55
<v-container
66
class="full-height d-flex justify-center align-center"
@@ -46,7 +46,7 @@
4646
import { computed } from "vue";
4747
import { useRouter } from "vue-router";
4848
import Logo from "../assets/logo-inverted.png";
49-
import SnackbarNew from "@/components/Snackbar/SnackbarNew.vue";
49+
import Snackbar from "@/components/Snackbar/Snackbar.vue";
5050
import { envVariables } from "../envVariables";
5151
5252
const router = useRouter();

ui/src/layouts/SimpleLayout.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<v-app>
3-
<SnackbarNew />
3+
<Snackbar />
44
<v-main class="d-flex justify-center align-center">
55
<v-container
66
class="full-height d-flex justify-center align-center"
@@ -41,7 +41,7 @@
4141
import { computed } from "vue";
4242
import { useRouter } from "vue-router";
4343
import Logo from "../assets/logo-inverted.png";
44-
import SnackbarNew from "@/components/Snackbar/SnackbarNew.vue";
44+
import Snackbar from "@/components/Snackbar/Snackbar.vue";
4545
4646
const router = useRouter();
4747
const currentRoute = computed(() => router.currentRoute);

0 commit comments

Comments
 (0)