비밀번호 변경
This commit is contained in:
@@ -7,6 +7,7 @@ import MockRouteEditDialog from '@/components/mock-route/MockRouteEditDialog.jsx
|
||||
import TCPServerEditDialog from '@/components/tcp-servers/TCPServerEditDialog.jsx';
|
||||
import QueueEditDialog from '@/components/queues/QueueEditDialog.jsx';
|
||||
import UserEditDialog from '@/components/users/UserEditDialog.jsx';
|
||||
import PasswordChangeDialog from '@/components/account/PasswordChangeDialog.jsx';
|
||||
|
||||
const DialogManager = ({
|
||||
showAddApi,
|
||||
@@ -18,6 +19,7 @@ const DialogManager = ({
|
||||
showQueueEdit,
|
||||
showUserEdit,
|
||||
selectedItem,
|
||||
showPasswordChange,
|
||||
onDialogChange
|
||||
}) => {
|
||||
|
||||
@@ -58,6 +60,10 @@ const DialogManager = ({
|
||||
onOpenChange={(isOpen) => onDialogChange('showUserEdit', isOpen)}
|
||||
item={selectedItem}
|
||||
/>
|
||||
<PasswordChangeDialog
|
||||
open={showPasswordChange}
|
||||
onOpenChange={(isOpen) => onDialogChange('showPasswordChange', isOpen)}
|
||||
/>
|
||||
</>;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user