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
This commit is part of merge request !4. Comments created here will be created in the context of that merge request.
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
} }
$payload = [ $payload = [
'success' => false, 'success' => false,
'message' => 'Account oder Passwort nicht gefunden.', 'message' => 'Account nicht gefunden oder Passwort falsch',
]; ];
http_response_code(401); http_response_code(401);
exit(json_encode($payload)); exit(json_encode($payload));
\ No newline at end of file
...@@ -71,6 +71,6 @@ export default { ...@@ -71,6 +71,6 @@ export default {
<style scoped> <style scoped>
.contentBox { .contentBox {
white-space: pre; white-space: pre-wrap;
} }
</style> </style>
...@@ -76,6 +76,6 @@ export default { ...@@ -76,6 +76,6 @@ export default {
<style scoped> <style scoped>
.contentBox { .contentBox {
white-space: pre; white-space: pre-wrap;
} }
</style> </style>
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<v-card> <v-card>
<v-card-title>{{ user.nickname }}</v-card-title> <v-card-title>{{ user.nickname }}</v-card-title>
<v-card-subtitle>{{ user.email }}</v-card-subtitle> <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-card>
</v-dialog> </v-dialog>
...@@ -71,4 +71,8 @@ export default { ...@@ -71,4 +71,8 @@ export default {
}; };
</script> </script>
<style></style> <style scoped>
.statusBox {
white-space: pre-wrap;
}
</style>
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<v-card> <v-card>
<v-card-title>{{ user.nickname }}</v-card-title> <v-card-title>{{ user.nickname }}</v-card-title>
<v-card-subtitle>{{ user.email }}</v-card-subtitle> <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-card>
</v-dialog> </v-dialog>
...@@ -71,4 +71,8 @@ export default { ...@@ -71,4 +71,8 @@ export default {
}; };
</script> </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