* fix #5214 * null削除の取り消し * 空白文字の調整
This commit is contained in:
parent
076ac3b614
commit
333604898c
2 changed files with 4 additions and 0 deletions
|
@ -224,6 +224,8 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
addWidget() {
|
addWidget() {
|
||||||
|
if(this.widgetAdderSelected == null) return;
|
||||||
|
|
||||||
this.$store.commit('addHomeWidget', {
|
this.$store.commit('addHomeWidget', {
|
||||||
name: this.widgetAdderSelected,
|
name: this.widgetAdderSelected,
|
||||||
id: uuid(),
|
id: uuid(),
|
||||||
|
|
|
@ -122,6 +122,8 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
addWidget() {
|
addWidget() {
|
||||||
|
if(this.widgetAdderSelected == null) return;
|
||||||
|
|
||||||
this.$store.commit('addMobileHomeWidget', {
|
this.$store.commit('addMobileHomeWidget', {
|
||||||
name: this.widgetAdderSelected,
|
name: this.widgetAdderSelected,
|
||||||
id: uuid(),
|
id: uuid(),
|
||||||
|
|
Loading…
Reference in a new issue