Update Harbor client implementation
Build and Deploy Gateway / build-and-push (push) Successful in 34s
Build and Deploy Gateway / deploy (push) Successful in 13s

This commit is contained in:
2026-09-10 21:54:18 +03:00
parent 1ae23d848b
commit 74c5b66482
11 changed files with 868 additions and 806 deletions
+3 -1
View File
@@ -9,6 +9,7 @@ interface DrawerBaseProps {
className?: string;
sheetClassName?: string;
closeLabel: string;
closeText?: string;
onClose: () => unknown;
leading?: ReactNode;
children: ReactNode;
@@ -30,6 +31,7 @@ export function Drawer({
labelledBy,
label,
closeLabel,
closeText = '×',
onClose,
leading,
children,
@@ -51,7 +53,7 @@ export function Drawer({
type="button"
aria-label={closeLabel}
onClick={onClose}
>×</button>
>{closeText}</button>
{children}
</div>
</aside>;