Skip to content
Snippets Groups Projects
Unverified Commit b106acac authored by syuilo's avatar syuilo
Browse files

Fix #4340

parent a5071db8
No related branches found
No related tags found
No related merge requests found
ChangeLog
=========
unreleasded
----------
* デッキモードにてユーザーのプロフィールを連続で見たとき、アクティビティや画像が前のユーザーのもののまま表示される問題を修正
10.88.0
----------
* アカウントの削除を試験的に実装
......
......@@ -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();
});
},
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment