This commit is contained in:
j3d1 2023-10-28 20:24:25 +02:00
parent 0d4012b4c6
commit 53517e5170
8 changed files with 119 additions and 15 deletions

View file

@ -90,7 +90,7 @@ export default {
return this.property.value
},
set(value) {
this.$emit("input", value)
this.$emit("input", {...this.property,value})
}
},
prettyDescription() {

View file

@ -29,11 +29,6 @@ import BadgeSelectField from "@/components/BadgeSelectField.vue";
export default {
name: "PropertyField",
data() {
return {
property: ""
}
},
components: {
BadgeSelectField,
PropertyBadge,

View file

@ -21,6 +21,12 @@
<span class="align-middle">Friends</span>
</router-link>
</li>
<li class="sidebar-item">
<router-link to="/admin" class="sidebar-link">
<b-icon-gear class="bi-valign-middle"></b-icon-gear>
<span class="align-middle">Admin</span>
</router-link>
</li>
</ul>
</div>
</nav>