Browse Source

FIX|text modal sending notifications (#18)

Co-authored-by: Vitalik Yatsenko <vitalik@noreply.localhost>
Reviewed-on: #18
Co-authored-by: Eduard Makarov <eduard.makarov.jetup@gmail.com>
Co-committed-by: Eduard Makarov <eduard.makarov.jetup@gmail.com>
pull/20/head
Eduard Makarov 8 months ago committed by Vitalik Yatsenko
parent
commit
3b890c64f6
  1. 2
      src/widgets/send-notifications/hooks/use-send-notifications.hook.ts
  2. 6
      src/widgets/send-notifications/send-notifications.widget.tsx

2
src/widgets/send-notifications/hooks/use-send-notifications.hook.ts

@ -54,7 +54,7 @@ export const useSendNotifications = (onSuccess?: () => void) => { @@ -54,7 +54,7 @@ export const useSendNotifications = (onSuccess?: () => void) => {
});
onSuccess();
form.reset();
notification.showSuccess("Успішно", "Сповіщення були створенні");
notification.showSuccess("Успішно", "Пуш-сповіщення надіслано");
} catch (e) {
notification.showError("Помилка", "Не вдалось відправити сповіщення");
} finally {

6
src/widgets/send-notifications/send-notifications.widget.tsx

@ -63,7 +63,7 @@ export const SendNotificationsWidget: FC<Props> = ({ isOpen, onClose }) => { @@ -63,7 +63,7 @@ export const SendNotificationsWidget: FC<Props> = ({ isOpen, onClose }) => {
}, [loadParams?.count, selectedUsers]);
return (
<Modal show={isOpen} toggle={() => onClose()} title="Нове сповіщення">
<Modal show={isOpen} toggle={() => onClose()} title="Нове пуш-сповіщення">
<div className="form send-notifi-form">
<Controller
name="title"
@ -135,9 +135,9 @@ export const SendNotificationsWidget: FC<Props> = ({ isOpen, onClose }) => { @@ -135,9 +135,9 @@ export const SendNotificationsWidget: FC<Props> = ({ isOpen, onClose }) => {
name={"allSelect"}
color="primary"
onClick={submit}
title={"Відправити"}
title={"Надіслати пуш-сповіщення"}
>
Створити
Надіслати пуш-сповіщення
</Button>
<Controller

Loading…
Cancel
Save