-
- }
- onClick={onApply}
- disabled={
- !currentTheme?.json_data ||
- !isValidJson(currentTheme.json_data) ||
- validation.hasErrors
- }
- buttonStyle="secondary"
+
+
+ {!isReadOnly && (
+
- {t('Apply')}
-
-
-
- )}
+ }
+ buttonStyle="secondary"
+ onClick={onFormat}
+ disabled={
+ !currentTheme?.json_data ||
+ !isValidJson(currentTheme.json_data)
+ }
+ >
+ {t('Format')}
+
+
+ )}
+ {canDevelopThemes && (
+
+ }
+ onClick={onApply}
+ disabled={
+ !currentTheme?.json_data ||
+ !isValidJson(currentTheme.json_data) ||
+ validation.hasErrors
+ }
+ buttonStyle="secondary"
+ >
+ {t('Apply')}
+
+
+ )}
+
+