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

fix(client): デッキでウィジェットの情報が保存されない問題を修正

Fix #8818
parent 11a6bd89
No related branches found
Tags 2023.9.0-beta.7
No related merge requests found
......@@ -9,6 +9,13 @@
You should also include the user name that made the change.
-->
## 12.x.x (unreleased)
### Improvements
### Bugfixes
- Client: デッキでウィジェットの情報が保存されない問題を修正 @syuilo
## 12.111.0 (2022/06/11)
### Improvements
- Supports Unicode Emoji 14.0 @mei23
......
......@@ -276,7 +276,7 @@ export function setColumnWidgets(id: Column['id'], widgets: ColumnWidget[]) {
saveDeck();
}
export function updateColumnWidget(id: Column['id'], widgetId: string, WidgetData: any) {
export function updateColumnWidget(id: Column['id'], widgetId: string, widgetData: any) {
const columns = copy(deckStore.state.columns);
const columnIndex = deckStore.state.columns.findIndex(c => c.id === id);
const column = copy(deckStore.state.columns[columnIndex]);
......
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