Skip to content

Commit 8f4c1d8

Browse files
committed
Update color scheme in InfosBuild component for improved visibility; remove unnecessary whitespace in CommuBuildsView and MesBuildsView for cleaner code structure.
1 parent 28965c0 commit 8f4c1d8

3 files changed

Lines changed: 1 addition & 4 deletions

File tree

frontend/src/components/composants/InfosBuild.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ const submitForm = async () => {
480480
padding: 0.75rem 1.5rem;
481481
background: transparent;
482482
border: none;
483-
color: var(--color-grey-200);
483+
color: var(--color-grey-50);
484484
font-size: var(--text-base);
485485
cursor: pointer;
486486
transition: all 0.2s;

frontend/src/views/CommuBuildsView.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ const filteredBuilds = computed(() => {
114114
})
115115
}
116116
117-
118117
return filtered.sort((a, b) => {
119118
if (!a.version || !b.version) return 0
120119

frontend/src/views/MesBuildsView.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,9 @@ const filteredBuilds = computed(() => {
116116
})
117117
}
118118
119-
120119
return filtered.sort((a, b) => {
121120
if (!a.version || !b.version) return 0
122121
123-
124122
const versionA = a.version.split('.').map(Number)
125123
const versionB = b.version.split('.').map(Number)
126124

0 commit comments

Comments
 (0)