Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
les
gancio
Commits
37a02e66
Verified
Commit
37a02e66
authored
Sep 01, 2021
by
les
Browse files
fix max event export
parent
87d8f130
Changes
1
Hide whitespace changes
Inline
Side-by-side
pages/export.vue
View file @
37a02e66
...
...
@@ -54,11 +54,11 @@
v-row
v-col.mr-2(:span='11')
v-text-field(v-model='list.title' :label='$t("common.title")')
v-text-field(v-model='list.maxEvents' type='number' :label='$t("common.max_events")')
v-text-field(v-model='list.maxEvents' type='number'
min='1'
:label='$t("common.max_events")')
v-col.float-right(:span='12')
List(
:title='list.title'
:maxEvents='list.maxEvents'
:maxEvents='
Number(
list.maxEvents
)
'
:events='events')
v-text-field.mb-1(type='textarea' v-model='listScript' readonly )
v-btn(slot='prepend' text
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment