Added image select input to tabletop form

This commit is contained in:
ThaumRystra
2024-09-03 00:18:42 +02:00
parent 23b25f1606
commit fe804a5d9a

View File

@@ -17,7 +17,7 @@
cols="12" cols="12"
md="6" md="6"
> >
<text-field <smart-image-input
label="Picture URL" label="Picture URL"
hint="A link to a cover image for this tabletop" hint="A link to a cover image for this tabletop"
:disabled="!editPermission" :disabled="!editPermission"
@@ -172,6 +172,7 @@ import OutlinedInput from '/imports/client/ui/properties/viewers/shared/Outlined
import TabletopUserList from '/imports/client/ui/tabletop/TabletopUserList.vue'; import TabletopUserList from '/imports/client/ui/tabletop/TabletopUserList.vue';
import PropertyField from '/imports/client/ui/properties/viewers/shared/PropertyField.vue'; import PropertyField from '/imports/client/ui/properties/viewers/shared/PropertyField.vue';
import FormSection, { FormSections } from '/imports/client/ui/properties/forms/shared/FormSection.vue'; import FormSection, { FormSections } from '/imports/client/ui/properties/forms/shared/FormSection.vue';
import SmartImageInput from '/imports/client/ui/components/global/SmartImageInput.vue';
export default { export default {
name: 'TabletopViewer', name: 'TabletopViewer',
@@ -181,6 +182,7 @@ export default {
PropertyField, PropertyField,
FormSection, FormSection,
FormSections, FormSections,
SmartImageInput,
}, },
props: { props: {
model: { model: {