mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-22 22:35:23 +02:00
- Added a check to prevent empty values from being processed in the onValueChange handler for Bitbucket, Gitea, GitHub, and GitLab providers. - Removed unnecessary defaultValue prop from Select components to streamline the code. - Updated button styles to remove background color for better consistency across the UI. - Enhanced volume backup selection to display a message when no volumes are found. This update enhances user experience by ensuring that empty selections are handled gracefully and improves the overall visual consistency of the UI components.
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
let lastNestedPopupCloseAt = 0;
|
|
|
|
export function markNestedPopupClosed() {
|
|
lastNestedPopupCloseAt = performance.now();
|
|
}
|
|
|
|
export function wasNestedPopupJustClosed() {
|
|
return performance.now() - lastNestedPopupCloseAt < 100;
|
|
}
|