Skip to content
Snippets Groups Projects
Merged Timothee P requested to merge redmine-issues/12026 into develop
1 file
+ 8
6
Compare changes
  • Side-by-side
  • Inline
@@ -122,7 +122,7 @@
class="image_file"
id="image_file"
/>
<p class="error-message" style="color: red">
<p class="error-message">
{{ erreurUploadMessage }}
</p>
</div>
@@ -393,9 +393,7 @@ export default {
},
orderedCustomFields() {
return [...this.extra_form].sort(
(a, b) => a.position - b.position
);
return [...this.extra_form].sort((a, b) => a.position - b.position);
},
geoRefFileLabel() {
@@ -419,8 +417,8 @@ export default {
if (this.project) {
const isModerate = this.project.moderation;
const userStatus = this.USER_LEVEL_PROJECTS[this.project.slug];
const isOwnFeature = this.feature //* prevent undefined feature
? this.feature.creator === this.user.id
const isOwnFeature = this.feature
? this.feature.creator === this.user.id //* prevent undefined feature
: false; //* si le contributeur est l'auteur du signalement
if (
//* si admin ou modérateur, statuts toujours disponible : Brouillon, Publié, Archivé
@@ -1045,6 +1043,10 @@ export default {
.ui.segment {
margin: 1rem 0 !important;
}
.error-message {
color: red;
}
/* override to display buttons under the dimmer of modal */
.leaflet-top,
.leaflet-bottom {
Loading