mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-25 19:10:53 +00:00
do not propagate click event
This commit is contained in:
@@ -395,3 +395,4 @@ Timebased features like the multifactor init prompt or password expiry, are not
|
|||||||
- Password Expiry Settings
|
- Password Expiry Settings
|
||||||
- Login Settings: multifactor init prompt
|
- Login Settings: multifactor init prompt
|
||||||
- forceMFA on login settings is not checked for IDPs
|
- forceMFA on login settings is not checked for IDPs
|
||||||
|
- disablePhone / disableEmail from loginSettings will be implemented right after https://github.com/zitadel/zitadel/issues/9016 is merged
|
||||||
|
@@ -140,6 +140,7 @@ export function SessionItem({
|
|||||||
className="hidden group-hover:block h-5 w-5 transition-all opacity-50 hover:opacity-100"
|
className="hidden group-hover:block h-5 w-5 transition-all opacity-50 hover:opacity-100"
|
||||||
onClick={(event) => {
|
onClick={(event) => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
clearSession(session.id).then(() => {
|
clearSession(session.id).then(() => {
|
||||||
reload();
|
reload();
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user