diff --git a/packages/hoppscotch-common/assets/scss/styles.scss b/packages/hoppscotch-common/assets/scss/styles.scss
index f18f26d03..dc7dd3a51 100644
--- a/packages/hoppscotch-common/assets/scss/styles.scss
+++ b/packages/hoppscotch-common/assets/scss/styles.scss
@@ -221,6 +221,7 @@ a {
[data-v-tippy] {
@apply flex flex-1;
+ @apply truncate;
}
[interactive] > div {
diff --git a/packages/hoppscotch-common/src/components.d.ts b/packages/hoppscotch-common/src/components.d.ts
index 44a7cbd5e..9d3de1d34 100644
--- a/packages/hoppscotch-common/src/components.d.ts
+++ b/packages/hoppscotch-common/src/components.d.ts
@@ -97,6 +97,7 @@ declare module '@vue/runtime-core' {
HoppSmartSpinner: typeof import('@hoppscotch/ui')['HoppSmartSpinner']
HoppSmartTab: typeof import('@hoppscotch/ui')['HoppSmartTab']
HoppSmartTabs: typeof import('@hoppscotch/ui')['HoppSmartTabs']
+ HoppSmartToggle: typeof import('@hoppscotch/ui')['HoppSmartToggle']
HoppSmartWindow: typeof import('@hoppscotch/ui')['HoppSmartWindow']
HoppSmartWindows: typeof import('@hoppscotch/ui')['HoppSmartWindows']
HttpAuthorization: typeof import('./components/http/Authorization.vue')['default']
diff --git a/packages/hoppscotch-common/src/components/app/Inspection.vue b/packages/hoppscotch-common/src/components/app/Inspection.vue
index 670508c35..df16f3f51 100644
--- a/packages/hoppscotch-common/src/components/app/Inspection.vue
+++ b/packages/hoppscotch-common/src/components/app/Inspection.vue
@@ -31,7 +31,7 @@
@@ -26,6 +27,7 @@
:alt="`${t('error.script_fail')}`"
:label="t('error.script_fail')"
:text="t('helpers.script_fail')"
+ large
>
-
+
{{ tab.document.request.name }}
diff --git a/packages/hoppscotch-common/src/components/smart/EnvInput.vue b/packages/hoppscotch-common/src/components/smart/EnvInput.vue
index 231cba7ec..508c498d7 100644
--- a/packages/hoppscotch-common/src/components/smart/EnvInput.vue
+++ b/packages/hoppscotch-common/src/components/smart/EnvInput.vue
@@ -1,6 +1,8 @@
-
+
const selectedEnvType = getSelectedEnvironmentType()
- const envTypeIcon = `${
- selectedEnvType === "TEAM_ENV" ? "people" : "person"
- }`
+ const envTypeIcon = `${
+ selectedEnvType === "TEAM_ENV" ? "group" : "person"
+ }`
const appendEditAction = (tooltip: HTMLElement) => {
const editIcon = document.createElement("span")
@@ -88,7 +88,7 @@ const cursorTooltipField = (aggregateEnvs: AggregateEnvironment[]) =>
variableName: parsedEnvKey,
})
})
- editIcon.innerHTML = `drive_file_rename_outline`
+ editIcon.innerHTML = `edit`
tooltip.appendChild(editIcon)
}
diff --git a/packages/hoppscotch-sh-admin/assets/scss/styles.scss b/packages/hoppscotch-sh-admin/assets/scss/styles.scss
index f18f26d03..dc7dd3a51 100644
--- a/packages/hoppscotch-sh-admin/assets/scss/styles.scss
+++ b/packages/hoppscotch-sh-admin/assets/scss/styles.scss
@@ -221,6 +221,7 @@ a {
[data-v-tippy] {
@apply flex flex-1;
+ @apply truncate;
}
[interactive] > div {
diff --git a/packages/hoppscotch-ui/src/assets/scss/styles.scss b/packages/hoppscotch-ui/src/assets/scss/styles.scss
index f18f26d03..dc7dd3a51 100644
--- a/packages/hoppscotch-ui/src/assets/scss/styles.scss
+++ b/packages/hoppscotch-ui/src/assets/scss/styles.scss
@@ -221,6 +221,7 @@ a {
[data-v-tippy] {
@apply flex flex-1;
+ @apply truncate;
}
[interactive] > div {
diff --git a/packages/hoppscotch-ui/src/components/smart/Placeholder.vue b/packages/hoppscotch-ui/src/components/smart/Placeholder.vue
index 9f0d6b219..7ceae796b 100644
--- a/packages/hoppscotch-ui/src/components/smart/Placeholder.vue
+++ b/packages/hoppscotch-ui/src/components/smart/Placeholder.vue
@@ -4,22 +4,19 @@
v-if="src"
:src="src"
loading="lazy"
- class="inline-flex flex-col object-contain object-center w-16 h-16 mb-4"
+ class="inline-flex flex-col object-contain object-center my-4"
+ :class="large ? 'w-32 h-32' : 'w-16 h-16'"
:alt="alt"
/>
-
-
{{ heading }}
-
{{ text }}
-
@@ -31,6 +28,7 @@ withDefaults(
alt?: string
heading?: string
text?: string
+ large?: boolean
}>(),
{
alt: "",