Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Web Engineering WS19-20
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Rosauer
Web Engineering WS19-20
Merge requests
!4
Deploy Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Deploy Develop
develop
into
master
Overview
0
Commits
7
Pipelines
0
Changes
1
Merged
Sebastian Rosauer
requested to merge
develop
into
master
4 years ago
Overview
0
Commits
7
Pipelines
0
Changes
1
Expand
Update master to the newest stable Version
0
0
Merge request reports
Viewing commit
b424f876
Prev
Next
Show latest version
1 file
+
8
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
b424f876
Added better field validation for register component
· b424f876
Sebastian Rosauer
authored
4 years ago
src/components/editor_components/ProfileViewer_secure.vue
+
6
−
2
Options
@@ -4,7 +4,7 @@
<v-card>
<v-card-title>
{{
user
.
nickname
}}
</v-card-title>
<v-card-subtitle>
{{
user
.
email
}}
</v-card-subtitle>
<v-card-text>
{{
user
.
status
}}
</v-card-text>
<v-card-text
class=
"statusBox"
>
{{
user
.
status
}}
</v-card-text>
</v-card>
</v-dialog>
@@ -71,4 +71,8 @@ export default {
};
</
script
>
<
style
></
style
>
<
style
scoped
>
.statusBox
{
white-space
:
pre-wrap
;
}
</
style
>
Loading