fix required problem for project fields

This commit is contained in:
maxim
2025-03-19 21:25:28 +03:00
parent 6db769f598
commit 497d6a3dd3
16 changed files with 37 additions and 37 deletions

View File

@ -73,7 +73,7 @@ export const CarrierCreate = () => {
fullWidth
InputLabelProps={{shrink: true}}
type="text"
label={'Полное имя'}
label={'Полное имя *'}
name="full_name"
/>
@ -87,7 +87,7 @@ export const CarrierCreate = () => {
fullWidth
InputLabelProps={{shrink: true}}
type="text"
label={'Короткое имя'}
label={'Короткое имя *'}
name="short_name"
/>
@ -101,7 +101,7 @@ export const CarrierCreate = () => {
fullWidth
InputLabelProps={{shrink: true}}
type="color"
label={'Основной цвет'}
label={'Основной цвет *'}
name="main_color"
sx={{
'& input': {
@ -123,7 +123,7 @@ export const CarrierCreate = () => {
fullWidth
InputLabelProps={{shrink: true}}
type="color"
label={'Цвет левого виджета'}
label={'Цвет левого виджета *'}
name="left_color"
sx={{
'& input': {
@ -144,7 +144,7 @@ export const CarrierCreate = () => {
fullWidth
InputLabelProps={{shrink: true}}
type="color"
label={'Цвет правого виджета'}
label={'Цвет правого виджета *'}
name="right_color"
sx={{
'& input': {
@ -166,7 +166,7 @@ export const CarrierCreate = () => {
fullWidth
InputLabelProps={{shrink: true}}
type="text"
label={'Слоган'}
label={'Слоган *'}
name="slogan"
/>