mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 14:59:41 +02:00
feat(ingress): autodetect ingress controllers EE-673 (#7712)
This commit is contained in:
parent
c96551e410
commit
89eda13eb3
48 changed files with 1252 additions and 1047 deletions
|
@ -22,7 +22,7 @@ export function TableHeaderCell({
|
|||
render,
|
||||
onSortClick,
|
||||
isSorted,
|
||||
isSortedDesc,
|
||||
isSortedDesc = true,
|
||||
canFilter,
|
||||
renderFilter,
|
||||
}: Props) {
|
||||
|
@ -55,7 +55,7 @@ function SortWrapper({
|
|||
children,
|
||||
onClick = () => {},
|
||||
isSorted,
|
||||
isSortedDesc,
|
||||
isSortedDesc = true,
|
||||
}: PropsWithChildren<SortWrapperProps>) {
|
||||
if (!canSort) {
|
||||
return <>{children}</>;
|
||||
|
@ -93,7 +93,7 @@ export function TableColumnHeaderAngular({
|
|||
canSort,
|
||||
isSorted,
|
||||
colTitle,
|
||||
isSortedDesc,
|
||||
isSortedDesc = true,
|
||||
}: TableColumnHeaderAngularProps) {
|
||||
return (
|
||||
<div className="flex flex-row flex-nowrap h-full">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue