Your project's basic information, such as its name, will be listed and searchable on Arbimon.
Detailed insights can be shared at your discretion. Review our
@@ -11,12 +11,12 @@
privacy policies
@@ -41,8 +42,7 @@ import { onMounted, ref, watch } from 'vue'
import IconIInfo from '../icon-i-info.vue'
-const props = defineProps<{ isPublic: boolean | undefined, isDisabled?: boolean }>()
-
+const props = defineProps<{ isPublic: boolean | undefined, isDisabled?: boolean, isCreateProject?: boolean }>()
const emit = defineEmits<{(e: 'emitProjectListed', value: boolean): void}>()
// eslint-disable-next-line regex/invalid
diff --git a/apps/website/src/projects/components/icon-i-info.vue b/apps/website/src/projects/components/icon-i-info.vue
index 63fda07f4..9efeaa203 100644
--- a/apps/website/src/projects/components/icon-i-info.vue
+++ b/apps/website/src/projects/components/icon-i-info.vue
@@ -9,6 +9,7 @@
:id="tooltipId"
role="tooltip"
class="absolute z-10 invisible inline-block px-3 py-2 text-sm font-medium text-gray-900 transition-opacity duration-300 bg-white rounded-lg shadow-sm opacity-0 tooltip"
+ :class="extraClass"
>
{{ tooltipText }}
()
onMounted(() => {
diff --git a/apps/website/src/projects/create-project-page.vue b/apps/website/src/projects/create-project-page.vue
index 0ecd51fe3..cc93edaf6 100644
--- a/apps/website/src/projects/create-project-page.vue
+++ b/apps/website/src/projects/create-project-page.vue
@@ -21,6 +21,7 @@
diff --git a/apps/website/src/projects/project-settings-page.vue b/apps/website/src/projects/project-settings-page.vue
index d0c87fabc..7ae455d5d 100644
--- a/apps/website/src/projects/project-settings-page.vue
+++ b/apps/website/src/projects/project-settings-page.vue
@@ -47,6 +47,7 @@