diff --git a/src/pages/Claim/Card/ClaimCard.vue b/src/pages/Claim/Card/ClaimCard.vue
index 705520e24..fe56c58dd 100644
--- a/src/pages/Claim/Card/ClaimCard.vue
+++ b/src/pages/Claim/Card/ClaimCard.vue
@@ -21,6 +21,12 @@ const $props = defineProps({
const entityId = computed(() => {
return $props.id || route.params.id;
});
+const claimSections = [
+ { name: 'Details', url: '/detail' },
+ { name: 'Notes', url: '/note/index' },
+ { name: 'Development', url: '/development' },
+ { name: 'Action', url: '/action' },
+];
let salixUrl;
onMounted(async () => {
@@ -48,48 +54,17 @@ function openNewTab(url) {
- {{ t('Details') }}
-
-
-
-
-
- {{ t('Notes') }}
-
-
-
-
-
- {{ t('Development') }}
-
-
-
-
-
- {{ t('Action') }}
+ {{ t(section.name) }}