docs: adjust line breaks in code blocks (#6001)

This commit is contained in:
Tylan Davis
2024-05-01 15:57:39 -04:00
committed by GitHub
parent 43a17f67a0
commit 26ee91eb48
3 changed files with 9 additions and 10 deletions

View File

@@ -49,7 +49,8 @@ export default buildConfig({
{
label: 'Arabic',
code: 'ar',
// opt-in to setting default text-alignment on Input fields to rtl (right-to-left) when current locale is rtl
// opt-in to setting default text-alignment on Input fields to rtl (right-to-left)
// when current locale is rtl
rtl: true,
},
],
@@ -134,13 +135,9 @@ to support localization, you need to specify each field that you would like to l
```js
{
name: 'title',
type
:
'text',
// highlight-start
localized
:
true,
type: 'text',
// highlight-start
localized: true,
// highlight-end
}
```