@@ -29,110 +29,90 @@
-
\ No newline at end of file
+
diff --git a/src/components/AccountMenu/SearchBar.vue b/src/components/AccountMenu/SearchBar.vue
index 1a8d0ed..e0a1c71 100644
--- a/src/components/AccountMenu/SearchBar.vue
+++ b/src/components/AccountMenu/SearchBar.vue
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
+const handleKeyPressOfSearch = (event) => {
+ if (event.key === 'Enter') {
+ emit('on-search-account-button-click', inputQuery.value);
+ }
+};
+
diff --git a/src/components/Badge.vue b/src/components/Badge.vue
index c2b1354..14db807 100644
--- a/src/components/Badge.vue
+++ b/src/components/Badge.vue
@@ -1,6 +1,6 @@
-
+ defineProps({
+ isActivated: {
+ type: Boolean,
+ required: true,
+ default: true,
},
- setup(props) {
- return {
- isActivated: props.isActivated,
- displayText: props.displayText,
- };
+ displayText: {
+ type: String,
+ required: true,
+ default: "Status",
}
});
-
\ No newline at end of file
+
diff --git a/src/components/Button.vue b/src/components/Button.vue
index 36d575e..1e7a06e 100644
--- a/src/components/Button.vue
+++ b/src/components/Button.vue
@@ -15,35 +15,23 @@
-
\ No newline at end of file
+const onMouseup = () => {
+ isPressed.value = false;
+};
+
diff --git a/src/components/ButtonFilled.vue b/src/components/ButtonFilled.vue
index 72ab00f..e6a70cc 100644
--- a/src/components/ButtonFilled.vue
+++ b/src/components/ButtonFilled.vue
@@ -16,35 +16,23 @@
-
\ No newline at end of file
+const onMouseup = () => {
+ isPressed.value = false;
+};
+
diff --git a/src/components/Compare/SidebarStates.vue b/src/components/Compare/SidebarStates.vue
index 15ed9ff..cc15767 100644
--- a/src/components/Compare/SidebarStates.vue
+++ b/src/components/Compare/SidebarStates.vue
@@ -146,128 +146,126 @@
-
\ No newline at end of file
+
diff --git a/src/views/AccountManagement/ModalAccountEditCreate.vue b/src/views/AccountManagement/ModalAccountEditCreate.vue
index 01678fc..2dea4b3 100644
--- a/src/views/AccountManagement/ModalAccountEditCreate.vue
+++ b/src/views/AccountManagement/ModalAccountEditCreate.vue
@@ -2,7 +2,7 @@