mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-25 16:02:11 +00:00
fix(frontend): escape wasn't removing the hash when closing a drawer (#2583)
This commit is contained in:
@@ -57,7 +57,7 @@
|
||||
f={(x) => x.email + ' ' + x.name + ' ' + x.company}
|
||||
/>
|
||||
|
||||
<Drawer bind:this={drawer} on:open={listUsers} size="1200px" on:clickAway={removeHash}>
|
||||
<Drawer bind:this={drawer} on:open={listUsers} size="1200px" on:close={removeHash}>
|
||||
<DrawerContent overflow_y={true} title="Instance Settings" on:close={closeDrawer}>
|
||||
<div class="flex flex-col h-full">
|
||||
<div>
|
||||
|
||||
@@ -89,7 +89,7 @@
|
||||
}
|
||||
</script>
|
||||
|
||||
<Drawer bind:this={drawer} size="800px" on:clickAway={removeHash}>
|
||||
<Drawer bind:this={drawer} size="800px" on:close={removeHash}>
|
||||
<DrawerContent title="User Settings" on:close={closeDrawer}>
|
||||
<div class="flex flex-col h-full">
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user