Skip to content
Snippets Groups Projects
Commit 50cd2f5b authored by Sebastian Rosauer's avatar Sebastian Rosauer
Browse files

Enabled auto word-wrap

parent 26928b31
No related branches found
No related tags found
1 merge request!4Deploy Develop
......@@ -44,7 +44,7 @@
}
$payload = [
'success' => false,
'message' => 'Account oder Passwort nicht gefunden.',
'message' => 'Account nicht gefunden oder Passwort falsch',
];
http_response_code(401);
exit(json_encode($payload));
\ No newline at end of file
......@@ -71,6 +71,6 @@ export default {
<style scoped>
.contentBox {
white-space: pre;
white-space: pre-wrap;
}
</style>
......@@ -76,6 +76,6 @@ export default {
<style scoped>
.contentBox {
white-space: pre;
white-space: pre-wrap;
}
</style>
......@@ -4,7 +4,7 @@
<v-card>
<v-card-title>{{ user.nickname }}</v-card-title>
<v-card-subtitle>{{ user.email }}</v-card-subtitle>
<v-card-text>{{ user.status }}</v-card-text>
<v-card-text class="statusBox">{{ user.status }}</v-card-text>
</v-card>
</v-dialog>
......@@ -71,4 +71,8 @@ export default {
};
</script>
<style></style>
<style scoped>
.statusBox {
white-space: pre-wrap;
}
</style>
......@@ -4,7 +4,7 @@
<v-card>
<v-card-title>{{ user.nickname }}</v-card-title>
<v-card-subtitle>{{ user.email }}</v-card-subtitle>
<v-card-text v-html="user.status"></v-card-text>
<v-card-text class="statusBox" v-html="user.status"></v-card-text>
</v-card>
</v-dialog>
......@@ -71,4 +71,8 @@ export default {
};
</script>
<style></style>
<style scoped>
.statusBox {
white-space: pre-wrap;
}
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment