summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModuleClientView.vue
diff options
context:
space:
mode:
authorUdo Walter2019-01-16 18:54:58 +0100
committerUdo Walter2019-01-16 18:54:58 +0100
commitb8da9b16ab89bd8d781481ae6bfc5a3c63641618 (patch)
tree309ba0dcc6666a2f1c32ccdbf889ecd615be756a /webapp/src/components/GroupModuleClientView.vue
parent[webapp] small bugfixes (diff)
downloadbas-b8da9b16ab89bd8d781481ae6bfc5a3c63641618.tar.gz
bas-b8da9b16ab89bd8d781481ae6bfc5a3c63641618.tar.xz
bas-b8da9b16ab89bd8d781481ae6bfc5a3c63641618.zip
[webapp/datatable] add button to filter only selected rows
+ some scrolling bugfixes
Diffstat (limited to 'webapp/src/components/GroupModuleClientView.vue')
-rw-r--r--webapp/src/components/GroupModuleClientView.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/webapp/src/components/GroupModuleClientView.vue b/webapp/src/components/GroupModuleClientView.vue
index 03c3b77..bc7ea10 100644
--- a/webapp/src/components/GroupModuleClientView.vue
+++ b/webapp/src/components/GroupModuleClientView.vue
@@ -78,7 +78,7 @@
<v-textarea prepend-icon="description" v-if="editMode" rows="1" auto-grow class="info-input" :label="$t('description')" color="primary" v-model="info.description"></v-textarea>
<div v-else class="info-input">
<div class="body-2 info-heading"><v-icon>description</v-icon><span>{{ $t('description') }}</span></div>
- <pre class="info-text">{{ client.description || '-' }}</pre>
+ <div class="info-text">{{ client.description || '-' }}</div>
</div>
</v-flex>
<v-flex lg4 xs12 order-lg3 order-xs1 class="text-xs-right">
@@ -218,5 +218,6 @@ export default {
}
.info-text {
margin-left: 34px;
+ font-family: 'Roboto Mono';
}
</style>