We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b66ec6 commit 6034fdbCopy full SHA for 6034fdb
src/components/dialogs/elementSaveDialog/ElementSaveDialog.tsx
@@ -335,8 +335,8 @@ export function ElementSaveDialog({
335
<RadioInput
336
name={FieldConstants.OPERATION_TYPE}
337
options={[
338
- { id: OperationType.CREATE, label: intl.formatMessage({ id: createLabelId }) },
339
- { id: OperationType.UPDATE, label: intl.formatMessage({ id: updateLabelId }) },
+ { id: OperationType.CREATE, label: createLabelId ?? 'createLabelId' },
+ { id: OperationType.UPDATE, label: updateLabelId ?? 'updateLabelId' },
340
]}
341
formProps={{
342
sx: {
0 commit comments