Browse Source

Application view title changed

Ecconia 7 years ago
parent
commit
e8377397a3
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/views/Application.vue

+ 4 - 2
src/views/Application.vue

@@ -1,9 +1,8 @@
 <template>
 	<div>
-		<h1>Application with ID {{ id }}</h1>
+		<h1>Application by {{ appdata.username }}</h1>
 		<span v-if="error !== ''">{{ error }}</span>
 		<div class="appdata" v-else>
-			<p>Username: {{ appdata.username }}</p>
 			<div class="pair" v-for="(value, key) in appdata.fields" :key="key">
 				<h4>{{ key }}</h4>
 				<p>{{ value }}</p>
@@ -13,6 +12,7 @@
 </template>
 
 <script>
+	//TODO: Fix title...
 	export default {
 		data () {
 			return {
@@ -50,5 +50,7 @@
 		margin: 0;
 		margin-top: 0.2em;
 		margin-left: 0.5em;
+
+		overflow-wrap: break-word;
 	}
 </style>