Compare commits
5 Commits
v1.0.0
...
fix/npm-up
Author | SHA1 | Date | |
---|---|---|---|
dc883ac302
|
|||
16feb41f8a | |||
04cb8a7217 | |||
e3115f9944 | |||
122b13b6a2 |
14476
package-lock.json
generated
14476
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -7,10 +7,10 @@
|
|||||||
"lint": "vue-cli-service lint"
|
"lint": "vue-cli-service lint"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vue/cli-plugin-babel": "~4.5.0",
|
"@vue/cli-plugin-babel": "^4.5.0",
|
||||||
"@vue/cli-plugin-eslint": "~4.5.0",
|
"@vue/cli-plugin-eslint": "^4.5.0",
|
||||||
"@vue/cli-plugin-router": "~4.5.0",
|
"@vue/cli-plugin-router": "^4.5.0",
|
||||||
"@vue/cli-service": "~4.5.0",
|
"@vue/cli-service": "^4.5.0",
|
||||||
"@vue/compiler-sfc": "^3.0.0",
|
"@vue/compiler-sfc": "^3.0.0",
|
||||||
"babel-eslint": "^10.1.0",
|
"babel-eslint": "^10.1.0",
|
||||||
"bootstrap": "^5.0.1",
|
"bootstrap": "^5.0.1",
|
||||||
|
@ -115,11 +115,11 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||||||
</template>
|
</template>
|
||||||
</Section>
|
</Section>
|
||||||
|
|
||||||
<Section title="Ich suche">
|
<Section title="Ich suche für mich Projekte/Aufträge in folgenden Bereichen">
|
||||||
<template v-slot:card-body>
|
<template v-slot:card-body>
|
||||||
<auto-complete
|
<auto-complete
|
||||||
type="skill"
|
type="skill"
|
||||||
label="Ich suche"
|
label="Ich suche für mich Projekte/Aufträge in folgenden Bereichen"
|
||||||
:values="profile.searchtopics"
|
:values="profile.searchtopics"
|
||||||
:showSecondary="false"
|
:showSecondary="false"
|
||||||
placeholder="z.B. Python, JavaScript, Linux"
|
placeholder="z.B. Python, JavaScript, Linux"
|
||||||
|
@ -31,7 +31,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||||||
|
|
||||||
<Section
|
<Section
|
||||||
v-if="profile.searchtopics && profile.searchtopics.length > 0"
|
v-if="profile.searchtopics && profile.searchtopics.length > 0"
|
||||||
title="Das suche ich">
|
title="Ich suche für mich Projekte/Aufträge in folgenden Bereichen">
|
||||||
<div style="margin-bottom: -.5rem;">
|
<div style="margin-bottom: -.5rem;">
|
||||||
<Skill
|
<Skill
|
||||||
class="me-2 mb-2"
|
class="me-2 mb-2"
|
||||||
@ -75,7 +75,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||||||
<label class="form-label fw-bold">
|
<label class="form-label fw-bold">
|
||||||
Anmerkungen
|
Anmerkungen
|
||||||
</label>
|
</label>
|
||||||
<div>{{ profile.availability_text }}</div>
|
<div class="line-break-text">{{ profile.availability_text }}</div>
|
||||||
</div>
|
</div>
|
||||||
</Section>
|
</Section>
|
||||||
|
|
||||||
@ -98,11 +98,11 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
|||||||
title="Sonstiges">
|
title="Sonstiges">
|
||||||
<div v-if="profile.freetext" :class="{ 'lh-base': true, 'mb-4': profile.volunteerwork }">
|
<div v-if="profile.freetext" :class="{ 'lh-base': true, 'mb-4': profile.volunteerwork }">
|
||||||
<h5>Über mich</h5>
|
<h5>Über mich</h5>
|
||||||
{{ profile.freetext }}
|
<div class="line-break-text">{{ profile.freetext }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="profile.volunteerwork" class="lh-base">
|
<div v-if="profile.volunteerwork" class="lh-base">
|
||||||
<h5>Ehrenamtliche Arbeit</h5>
|
<h5>Ehrenamtliche Arbeit</h5>
|
||||||
{{ profile.volunteerwork }}
|
<div class="line-break-text">{{ profile.volunteerwork }}</div>
|
||||||
</div>
|
</div>
|
||||||
</Section>
|
</Section>
|
||||||
</template>
|
</template>
|
||||||
@ -154,4 +154,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
.line-break-text{
|
||||||
|
white-space: pre-line;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Reference in New Issue
Block a user