mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
* fix #5214 * null削除の取り消し * 空白文字の調整
This commit is contained in:
parent
2f4de72c22
commit
430d53bbb8
2 changed files with 4 additions and 0 deletions
|
@ -224,6 +224,8 @@ export default Vue.extend({
|
|||
},
|
||||
|
||||
addWidget() {
|
||||
if(this.widgetAdderSelected == null) return;
|
||||
|
||||
this.$store.commit('addHomeWidget', {
|
||||
name: this.widgetAdderSelected,
|
||||
id: uuid(),
|
||||
|
|
|
@ -122,6 +122,8 @@ export default Vue.extend({
|
|||
},
|
||||
|
||||
addWidget() {
|
||||
if(this.widgetAdderSelected == null) return;
|
||||
|
||||
this.$store.commit('addMobileHomeWidget', {
|
||||
name: this.widgetAdderSelected,
|
||||
id: uuid(),
|
||||
|
|
Loading…
Reference in a new issue