diff --git a/src/components/dialogues/EditUrlDialog.vue b/src/components/dialogues/EditUrlDialog.vue
index 9a0e55f0..b6159198 100644
--- a/src/components/dialogues/EditUrlDialog.vue
+++ b/src/components/dialogues/EditUrlDialog.vue
@@ -136,6 +136,4 @@ const updatePlaceholder = (placeholder: string, val: any) => {
const modelFor = (ident: string) => placeholderValues.value.get(ident)
-const tabTitle = () => props.tab.name || props.tab.title
-
diff --git a/src/components/utils/ShortUrl.vue b/src/components/utils/ShortUrl.vue
index 16757911..e66c3a20 100644
--- a/src/components/utils/ShortUrl.vue
+++ b/src/components/utils/ShortUrl.vue
@@ -1,5 +1,5 @@
- {{ shortenUrl() }}
+ {{ props.label ? props.label : shortenUrl() }}
{{ url }}
@@ -8,6 +8,7 @@
const props = defineProps({
url: {type: String, required: true},
+ label: {type: String, required: false},
hostnameOnly: {type: Boolean, default: false}
})
diff --git a/src/components/widgets/PanelTabListElementWidget.vue b/src/components/widgets/PanelTabListElementWidget.vue
index 256c8d4d..30c11edd 100644
--- a/src/components/widgets/PanelTabListElementWidget.vue
+++ b/src/components/widgets/PanelTabListElementWidget.vue
@@ -1,5 +1,6 @@
+
-
+
@@ -72,40 +73,47 @@
-
+
+ @click.stop="gotoTab()">
{{ props.tab.description }}
-
+
-
+
-
-
-
-
-
+
{{ matcherTooltip() }}
+
+
-
+
+
-
+
@@ -171,7 +180,7 @@
-
+
@@ -217,6 +226,8 @@ import {useUtils} from "src/services/Utils";
import {useRouter} from "vue-router";
import {useGroupsStore} from "stores/groupsStore";
import {DeleteChromeGroupCommand} from "src/domain/groups/DeleteChromeGroupCommand";
+import {PlaceholdersType} from "src/models/Placeholders";
+import {uid} from "quasar";
const {inBexMode} = useUtils()
@@ -242,6 +253,7 @@ const tsBadges = ref