Compare commits

...

2 Commits

Author SHA1 Message Date
e035fa3289
extend skill length to 50
All checks were successful
continuous-integration/drone/push Build is passing
2021-11-22 20:14:45 +01:00
324203216a
fix typo 2021-11-22 18:48:13 +01:00
2 changed files with 8 additions and 5 deletions

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="25"
:maxlength="maxlength"
:placeholder="placeholder"
v-model="searchText"
@input="search()"
@ -99,7 +99,10 @@ export default {
};
},
computed: {
...mapState(['currentUserId'])
...mapState(['currentUserId']),
maxlength() {
return this.type === 'skill' ? 50 : 25
}
},
methods: {
addResult(result = false) {

View File

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