diff --git a/README.md b/README.md index fde65539..44834a67 100644 --- a/README.md +++ b/README.md @@ -230,6 +230,9 @@ E.g., if it was used in a menu and the menu is red, the circle would be red. ### **WORK IN PROGRESS** --> ## Changelog +### **WORK IN PROGRESS** +* (foxriver76) fixed issue with BulkEditor + ### 2.9.14 (2024-01-09) * (foxriver76) fixed last change y-offset for some widgets * (foxriver76) fixed issue where JquiState did not respect data type diff --git a/src/src/Vis/Widgets/JQui/BulkEditor.tsx b/src/src/Vis/Widgets/JQui/BulkEditor.tsx index f3f1d97c..1533cc32 100644 --- a/src/src/Vis/Widgets/JQui/BulkEditor.tsx +++ b/src/src/Vis/Widgets/JQui/BulkEditor.tsx @@ -106,7 +106,8 @@ interface BulkEditorState { editDialog?: { index?: number; value: string | number; - add: unknown; + /** True if add dialog, false if edit dialog */ + add: boolean; } | null; textDialogFocused: unknown[]; states: null; @@ -561,7 +562,7 @@ class BulkEditor extends React.Component { startIcon={this.state.editDialog.add ? : } onClick={() => this.onEnter()} > - {this.state.editDialog.add ? I18n.t('Add') : I18n.t('Delete')} + {this.state.editDialog.add ? I18n.t('Add') : I18n.t('Apply')}