Skip to content
GitLab
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
1a62db59
Commit
1a62db59
authored
Oct 02, 2019
by
les
Browse files
[style] fixed width in confirmation events table
parent
687a1239
Changes
1
Hide whitespace changes
Inline
Side-by-side
pages/admin.vue
View file @
1a62db59
...
...
@@ -28,11 +28,11 @@
span.ml-1
{{
$t
(
'
common.events
'
)
}}
p
{{
$t
(
'
admin.event_confirm_description
'
)
}}
el-table(:data='paginatedEvents' small primary-key='id' v-loading='loading')
el-table-column(:label='$t("common.name")')
el-table-column(:label='$t("common.name")'
width='300'
)
template(slot-scope='data')
{{
data
.
row
.
title
}}
el-table-column(:label='$t("common.where")')
el-table-column(:label='$t("common.where")'
width='250'
)
template(slot-scope='data')
{{
data
.
row
.
place
.
name
}}
el-table-column(:label='$t("common.confirm")')
el-table-column(:label='$t("common.confirm")'
width='250'
)
template(slot-scope='data')
el-button(type='primary' @click='confirm(data.row.id)' size='mini')
{{
$t
(
'
common.confirm
'
)
}}
el-button(type='success' @click='preview(data.row.id)' size='mini')
{{
$t
(
'
common.preview
'
)
}}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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