From bbc92924cef831cb14d975683840b35e101b83d4 Mon Sep 17 00:00:00 2001 From: Chuck Skelton Date: Mon, 4 May 2026 15:37:13 -0700 Subject: [PATCH] Missed a file --- .../PartitionKeyComponent.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/Explorer/Controls/Settings/SettingsSubComponents/PartitionKeyComponent.tsx b/src/Explorer/Controls/Settings/SettingsSubComponents/PartitionKeyComponent.tsx index 975156d56..320013b26 100644 --- a/src/Explorer/Controls/Settings/SettingsSubComponents/PartitionKeyComponent.tsx +++ b/src/Explorer/Controls/Settings/SettingsSubComponents/PartitionKeyComponent.tsx @@ -192,7 +192,14 @@ export const PartitionKeyComponent: React.FC = ({ useDialog .getState() - .showOkCancelModalDialog("", null, t(Keys.common.confirm), onConfirm, t(Keys.common.cancel), null, dialogBody); + .showOkCancelModalDialog( + "", + null, + t(Keys.common.confirm), + onConfirm, + t(Keys.common.cancel), + null, + dialogBody); }; const getOnlineJobMenuProps = (currentJob: DataTransferJobGetResults): IContextualMenuProps => { @@ -281,9 +288,9 @@ export const PartitionKeyComponent: React.FC = ({ const processedCountString = totalCount > 0 ? t(Keys.controls.settings.partitionKeyEditor.documentsProcessed, { - processedCount: String(processedCount), - totalCount: String(totalCount), - }) + processedCount: String(processedCount), + totalCount: String(totalCount), + }) : ""; return `${portalDataTransferJob?.properties?.status} ${processedCountString}`; };