Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Dima Krasner
Sharkey
Commits
b106acac
Unverified
Commit
b106acac
authored
6 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
Fix #4340
parent
a5071db8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
src/client/app/desktop/views/deck/deck.user-column.home.vue
+7
-3
7 additions, 3 deletions
src/client/app/desktop/views/deck/deck.user-column.home.vue
with
11 additions
and
3 deletions
CHANGELOG.md
+
4
−
0
View file @
b106acac
ChangeLog
=========
unreleasded
----------
*
デッキモードにてユーザーのプロフィールを連続で見たとき、アクティビティや画像が前のユーザーのもののまま表示される問題を修正
10.
88.0
----------
*
アカウントの削除を試験的に実装
...
...
This diff is collapsed.
Click to expand it.
src/client/app/desktop/views/deck/deck.user-column.home.vue
+
7
−
3
View file @
b106acac
...
...
@@ -61,12 +61,14 @@ export default Vue.extend({
return
{
withFiles
:
false
,
images
:
[],
makePromise
:
null
makePromise
:
null
,
chart
:
null
as
ApexCharts
};
},
watch
:
{
user
()
{
this
.
fetch
();
this
.
genPromiseMaker
();
}
},
...
...
@@ -155,7 +157,9 @@ export default Vue.extend({
]);
}
const
chart
=
new
ApexCharts
(
this
.
$refs
.
chart
,
{
if
(
this
.
chart
)
this
.
chart
.
destroy
();
this
.
chart
=
new
ApexCharts
(
this
.
$refs
.
chart
,
{
chart
:
{
type
:
'
bar
'
,
stacked
:
true
,
...
...
@@ -201,7 +205,7 @@ export default Vue.extend({
}
});
chart
.
render
();
this
.
chart
.
render
();
});
},
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment