Skip to content

Commit

Permalink
Merge pull request #1436 from ita-social-projects/feature/issue-1773
Browse files Browse the repository at this point in the history
Added correct description for field with URL transliteration
  • Loading branch information
Michael-Kolpakov authored Oct 20, 2024
2 parents 08b8053 + de162e4 commit e86b421
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,14 +253,14 @@ const MainBlockAdmin = React.memo(({
/>
</Form.Item>
<Form.Item
label="URL"
label="Транслітерація для URL: "
name="streetcodeUrlName"
className="maincard-item"
rules={[
{ required: true, message: 'Введіть Посилання', max: 100 },
{ required: true, message: 'Введіть транслітерацію', max: 100 },
{
pattern: /^[a-z0-9-]+$/,
message: 'Посилання має містити лише малі латинські літери, цифри та дефіс',
message: 'Транслітерація має містити лише малі латинські літери, цифри та дефіс',
},
{
validator: async (_, value) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ describe('NewsModal', () => {
);

const titleInput = screen.getByLabelText('Заголовок:') as HTMLInputElement;
const urlInput = screen.getByLabelText('Посилання:') as HTMLInputElement;
const urlInput = screen.getByLabelText('Транслітерація для URL:') as HTMLInputElement;
const textInput = screen.getByTestId('mockEditor') as HTMLTextAreaElement;
const fileUpload = screen.getByTestId('fileuploader') as HTMLInputElement;
const button = screen.getByRole('button', { name: 'Зберегти' });
Expand Down Expand Up @@ -192,7 +192,7 @@ describe('NewsModal', () => {
render(<NewsModal open setIsModalOpen={() => { }} />);

const titleInput = screen.getByLabelText('Заголовок:') as HTMLInputElement;
const urlInput = screen.getByLabelText('Посилання:') as HTMLInputElement;
const urlInput = screen.getByLabelText('Транслітерація для URL:') as HTMLInputElement;
const textInput = screen.getByTestId('mockEditor') as HTMLTextAreaElement;
const fileUpload = screen.getByTestId('fileuploader') as HTMLInputElement;

Expand Down Expand Up @@ -242,7 +242,7 @@ describe('NewsModal', () => {
);

const titleInput = screen.getByLabelText('Заголовок:') as HTMLInputElement;
const urlInput = screen.getByLabelText('Посилання:') as HTMLInputElement;
const urlInput = screen.getByLabelText('Транслітерація для URL:') as HTMLInputElement;
const dateInput = screen.getByRole('textbox', { name: "date" }) as HTMLInputElement;
const button = screen.getByRole('button', { name: 'Зберегти' });

Expand Down Expand Up @@ -299,7 +299,7 @@ describe('NewsModal', () => {
);

const titleInput = screen.getByLabelText('Заголовок:') as HTMLInputElement;
const urlInput = screen.getByLabelText('Посилання:') as HTMLInputElement;
const urlInput = screen.getByLabelText('Транслітерація для URL:') as HTMLInputElement;
const textInput = screen.getByTestId('mockEditor') as HTMLTextAreaElement;
const dateInput = screen.getByRole('textbox', { name: "date" }) as HTMLInputElement;
const fileUpload = screen.getByTestId('fileuploader') as HTMLInputElement;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,13 +274,13 @@ const NewsModal: React.FC<{

<Form.Item
name="url"
label="Посилання: "
label="Транслітерація для URL: "
rules={[
{ required: true, message: 'Введіть Посилання' },
{ required: true, message: 'Введіть транслітерацію' },
{
pattern: /^[0-9a-z-]+$/,
message:
'Посилання має містити лише малі латинські літери, цифри та дефіс',
'Транслітерація має містити лише малі латинські літери, цифри та дефіс',
},
{
validator: async (_, value) => {
Expand Down

0 comments on commit e86b421

Please sign in to comment.