Compare commits

..

No commits in common. "e035fa328928f4cdaed46dbad33138b3be95fe93" and "b270a5d56a7abd1e1fb3639a64342a81a7191bd4" have entirely different histories.

2 changed files with 5 additions and 8 deletions
src
components
views/profile

View File

@ -25,7 +25,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
type="text"
class="form-control form-control-sm"
id="searchText"
:maxlength="maxlength"
maxlength="25"
:placeholder="placeholder"
v-model="searchText"
@input="search()"
@ -99,10 +99,7 @@ export default {
};
},
computed: {
...mapState(['currentUserId']),
maxlength() {
return this.type === 'skill' ? 50 : 25
}
...mapState(['currentUserId'])
},
methods: {
addResult(result = false) {

View File

@ -65,8 +65,8 @@ SPDX-License-Identifier: AGPL-3.0-or-later
<i class="bi bi-x-square me-1"></i>
nein
</div>
<span
class="ms-3"
<span
class="ms-3"
v-if="profile.availability_status && profile.availability_hours_per_week">
({{ profile.availability_hours_per_week }} Stunden pro Woche)
</span>
@ -101,7 +101,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
{{ profile.freetext }}
</div>
<div v-if="profile.volunteerwork" class="lh-base">
<h5>Ehrenamtliche Arbeit</h5>
<h5>Ehrentamtliche Arbeit</h5>
{{ profile.volunteerwork }}
</div>
</Section>