Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion webapp/packages/plugin-data-export/src/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default [
['data_transfer_dialog_configuration_title', 'Export configuration'],
['data_transfer_dialog_preparation', 'We prepare your file for export. Please wait...'],
['data_transfer_notification_preparation', 'We prepare your file for download. Please wait...'],
['data_transfer_notification_ready', 'File ready to download'],
['data_transfer_notification_ready', 'File is ready to download'],
['data_transfer_notification_error', 'Preparation failed or canceled'],
['data_transfer_notification_download', 'Download'],
['data_transfer_notification_delete', 'Delete'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ interface CellKeyDownEvent extends AgGridEvent{
}

const EVENT_KEY_CODE = {
C: 'C',
C: 'KeyC',
};

interface TemporarySelectionRange {
Expand Down Expand Up @@ -103,7 +103,7 @@ export class RangeController implements IRangeController {
}

private handleDocumentCopy(event: KeyboardEvent) {
if (event.key === EVENT_KEY_CODE.C && (event.ctrlKey || event.metaKey)) {
if (event.code === EVENT_KEY_CODE.C && (event.ctrlKey || event.metaKey)) {
this.copySelectedData();
}
}
Expand Down