- 부가서비스 누락된 권한 체크 추가, 누락된 시스템 에러 처리 추가
This commit is contained in:
@@ -151,6 +151,10 @@ export const AccountHolderAuthPage = () => {
|
||||
|
||||
|
||||
const onClickToOpenEmailBottomSheet = () => {
|
||||
if (!checkGrant(59, 'D')) {
|
||||
showAlert(t('common.nopermission'));
|
||||
return;
|
||||
}
|
||||
setEmailBottomSheetOn(true);
|
||||
};
|
||||
|
||||
|
||||
@@ -141,6 +141,10 @@ export const AccountHolderSearchPage = () => {
|
||||
};
|
||||
|
||||
const onClickToOpenEmailBottomSheet = () => {
|
||||
if (!checkGrant(60, 'D')) {
|
||||
showAlert(t('common.nopermission'));
|
||||
return;
|
||||
}
|
||||
setEmailBottomSheetOn(true);
|
||||
};
|
||||
|
||||
@@ -223,7 +227,7 @@ export const AccountHolderSearchPage = () => {
|
||||
>
|
||||
<img
|
||||
src={IMAGE_ROOT + '/ico_setting.svg'}
|
||||
alt={t('filter.searchOptions')}
|
||||
alt={t('common.searchOptions')}
|
||||
onClick={() => onClickToOpenFilter()}
|
||||
/>
|
||||
</button>
|
||||
@@ -234,7 +238,7 @@ export const AccountHolderSearchPage = () => {
|
||||
>
|
||||
<img
|
||||
src={IMAGE_ROOT + '/ico_download.svg'}
|
||||
alt={t('filter.download')}
|
||||
alt={t('common.download')}
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -119,6 +119,7 @@ export const PayoutRequestPage = () => {
|
||||
type="text"
|
||||
placeholder={t('additionalService.payout.dateSelectPlaceholder')}
|
||||
value={settlementDate ? moment(settlementDate).format('YYYY.MM.DD') : ''}
|
||||
onChange={() => {}}
|
||||
/>
|
||||
<button
|
||||
className="date-btn"
|
||||
|
||||
Reference in New Issue
Block a user