Compare commits

..

No commits in common. "e3115f99448480b224048b436d2d73c5117ea33c" and "122b13b6a2660e94274b0570e54bde808b8e99a2" have entirely different histories.

3 changed files with 6 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{ {
"1": "Keine Angabe", "1": "Keine Angabe",
"2": "Grundkenntnisse", "2": "Grundkentnisse",
"3": "Gut", "3": "Gut",
"4": "Fließend", "4": "Fließend",
"5": "Muttersprache" "5": "Muttersprache"

View File

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

View File

@ -101,7 +101,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
{{ profile.freetext }} {{ profile.freetext }}
</div> </div>
<div v-if="profile.volunteerwork" class="lh-base"> <div v-if="profile.volunteerwork" class="lh-base">
<h5>Ehrenamtliche Arbeit</h5> <h5>Ehrentamtliche Arbeit</h5>
{{ profile.volunteerwork }} {{ profile.volunteerwork }}
</div> </div>
</Section> </Section>