[events] Fixed minor issues

This commit is contained in:
Ferdinand Thiessen 2021-04-04 21:33:47 +02:00
parent 3530132e72
commit 6a35f3c669
3 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit f245cb8b16c855c059d9170611797028c600696a
Subproject commit 000c043ce6cb4a082d8bde4ff2b8c955eade10a4

View File

@ -10,7 +10,7 @@ const config: { [key: string]: Array<string> } = {
// Do not change required Modules !!
requiredModules: ['User'],
// here you can import plugins.
loadModules: ['Balance', 'Events', 'Pricelist'],
loadModules: ['Balance', 'events', 'Pricelist'],
};
/* Stop!

View File

@ -7,7 +7,7 @@
{{ userDisplay(service.userid) }} {{ asDate(modelValue.start) }}
</div>
<q-space />
<q-btn icon="close" flat round dense @click="dialog = false" />
<q-btn icon="mdi-close" flat round dense @click="dialog = false" />
</q-card-section>
<q-card-section>
{{ modelValue.type.name }} {{ asHour(modelValue.start)
@ -134,7 +134,7 @@ export default defineComponent({
service.value = {
userid: details.value.userid,
is_backup: false,
value: 0.5,
value: 1,
};
dialog.value = true;
}