diff --git a/CHANGELOG.md b/CHANGELOG.md
index b942a3532..338b7cb7c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -68,6 +68,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- (GL #944) Replace buefy b-loading with c-loader from `csc-ui` and remove unused b-loading
- (GL #944) Replace buefy b-table with c-data-table from `csc-ui`
- (GL #944) Replace buefy dialogs with c-modal from `csc-ui`
+- (GL #944) Replace buefy notifications with c-toasts from `csc-ui`
### Fixed
diff --git a/swift_browser_ui_frontend/src/components/ContainerTable.vue b/swift_browser_ui_frontend/src/components/ContainerTable.vue
index 0404a4d23..9169b97f8 100644
--- a/swift_browser_ui_frontend/src/components/ContainerTable.vue
+++ b/swift_browser_ui_frontend/src/components/ContainerTable.vue
@@ -384,13 +384,14 @@ export default {
},
confirmDelete: function (container, objects) {
if (objects > 0) {
- this.$buefy.notification.open({
- message: this.$t("message.container_ops.deleteNote"),
- type: "is-danger",
- position: "is-top-right",
- duration: 30000,
- hasIcon: true,
- });
+ document.querySelector("#container-error-toasts").addToast(
+ {
+ progress: false,
+ type: "error",
+ duration: 30000,
+ message: this.$t("message.container_ops.deleteNote"),
+ },
+ );
this.$router.push(
this.$route.params.project
+ "/"
diff --git a/swift_browser_ui_frontend/src/components/SearchBox.vue b/swift_browser_ui_frontend/src/components/SearchBox.vue
index b7a194ad2..928756723 100644
--- a/swift_browser_ui_frontend/src/components/SearchBox.vue
+++ b/swift_browser_ui_frontend/src/components/SearchBox.vue
@@ -43,6 +43,12 @@
+