Skip to content
Snippets Groups Projects
Commit e786f72c authored by Sébastien DA ROCHA's avatar Sébastien DA ROCHA :bicyclist:
Browse files

Merge branch 'redmine-issue/13534' into 'develop'

REDMINE_ISSUE-13534

See merge request !343
parents 7fe24dbc 77a20dc0
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@
>
<div
v-if="user_permissions[project.slug].can_view_project"
class="item-content-wrapper"
>
<div class="ui tiny image">
<img
......@@ -207,13 +208,17 @@ export default {
.item {
div {
.item-content-wrapper {
width: 100%;
display: flex;
align-items: flex-start;
.content {
.middle.aligned.content {
width: 100%;
.header {
font-size: 1.1em;
font-size: 1.28571429em;
font-weight: 600;
color: rgb(31, 31, 31)
}
}
}
......
......@@ -452,7 +452,8 @@ export default {
computed: {
...mapState([
'configuration',
'isOnline'
'isOnline',
'user_permissions'
]),
...mapState('feature-type', [
'feature_types',
......
......@@ -229,6 +229,10 @@ export default {
type: Boolean,
default: true
},
featuresCount: {
type: Number,
default: 0
},
pagination: {
type: Object,
default: () => {
......@@ -241,7 +245,6 @@ export default {
data() {
return {
featuresCount: 0,
form: {
type: {
selected: '',
......
......@@ -5,7 +5,7 @@
>
<div
v-if="currentFeature"
class="ui grid"
class="ui grid stackable"
>
<div class="row">
<div class="sixteen wide column">
......
......@@ -6,6 +6,7 @@
<div class="column">
<FeaturesListAndMapFilters
:show-map="showMap"
:features-count="featuresCount"
:pagination="pagination"
@set-filter="setFilters"
@reset-pagination="resetPagination"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment