Skip to content
Snippets Groups Projects

Deploy Develop

Merged Sebastian Rosauer requested to merge develop into master
3 files
+ 8
89
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -2,12 +2,7 @@
<div>
<v-card v-if="file" width="800">
<v-card-title>{{ file.title }}</v-card-title>
<v-card-subtitle>
Besitzer: {{ file.author }}
<v-btn icon small @click="$emit('profile-click')"
><v-icon>mdi-account-circle</v-icon></v-btn
>
</v-card-subtitle>
<v-card-subtitle> Besitzer: {{ file.author }} </v-card-subtitle>
<v-card-text class="contentBox">{{ file.content }}</v-card-text>
<v-card-actions v-if="editable">
<v-spacer></v-spacer>
@@ -76,6 +71,6 @@ export default {
<style scoped>
.contentBox {
white-space: pre;
white-space: pre-wrap;
}
</style>
Loading