There was an error while loading. Please reload this page.
1 parent 9efff20 commit 6b834fdCopy full SHA for 6b834fd
1 file changed
packages/admin/src/components/AppCard.vue
@@ -74,8 +74,8 @@ const copyApp = async (id: string) => {
74
75
<template>
76
<v-card>
77
- <v-card-title class="d-flex justify-space-between align-center">
78
- {{ app.name }}
+ <v-card-title>
+ <span title="{{ app.name }}">{{ app.name }}</span>
79
<v-menu
80
v-model="menu"
81
:position-x="menuPosition.x"
@@ -132,3 +132,20 @@ const copyApp = async (id: string) => {
132
@submit="onCredentialsSubmit"
133
/>
134
</template>
135
+
136
+<style scoped>
137
+.v-card-title {
138
+ display: flex;
139
+ align-items: center;
140
+ justify-content: space-between;
141
+ column-gap: 0.5rem;
142
+}
143
144
+.v-card-title span {
145
+ flex: 1;
146
+ min-width: 0;
147
+ overflow: hidden;
148
+ text-overflow: ellipsis;
149
+ white-space: nowrap;
150
151
+</style>
0 commit comments