-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(coral): Align info banner with links to old interface (#2010)
* Add preview banner to users and teams page. Signed-off-by: Mirjam Aulbach <[email protected]> * Add info banner with link to old interface in env page directly. Signed-off-by: Mirjam Aulbach <[email protected]> * Add info banner with link to old interface in topic details page directly. Signed-off-by: Mirjam Aulbach <[email protected]> * Add info banner with links to old interface in approvals index page instead of each tab component. Signed-off-by: Mirjam Aulbach <[email protected]> * Add info banner with links to old interface in requests index page instead of each tab component. Signed-off-by: Mirjam Aulbach <[email protected]> * Removed unused import Signed-off-by: Mirjam Aulbach <[email protected]> * Add info banner with links to old interface in connector details index page instead of each tab component. Signed-off-by: Mirjam Aulbach <[email protected]> * Update import path for within. Signed-off-by: Mirjam Aulbach <[email protected]> * Update query for flaky ? test Signed-off-by: Mirjam Aulbach <[email protected]> --------- Signed-off-by: Mirjam Aulbach <[email protected]>
- Loading branch information
1 parent
cd1218a
commit 492f95b
Showing
36 changed files
with
71 additions
and
206 deletions.
There are no files selected for viewing
3 changes: 1 addition & 2 deletions
3
coral/src/app/components/documentation/DocumentationEditor.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
coral/src/app/components/documentation/DocumentationView.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
coral/src/app/features/components/EntityDetailsHeader.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
coral/src/app/features/connectors/details/overview/ConnectorOverview.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
coral/src/app/features/topics/details/schema/TopicDetailsSchema.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
import PreviewBanner from "src/app/components/PreviewBanner"; | ||
import AclApprovals from "src/app/features/approvals/acls/AclApprovals"; | ||
|
||
const AclApprovalsPage = () => { | ||
return ( | ||
<> | ||
<PreviewBanner linkTarget={"/execAcls"} /> | ||
<AclApprovals /> | ||
</> | ||
); | ||
return <AclApprovals />; | ||
}; | ||
|
||
export default AclApprovalsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
import PreviewBanner from "src/app/components/PreviewBanner"; | ||
import ConnectorApprovals from "src/app/features/approvals/connectors/ConnectorApprovals"; | ||
|
||
const ConnectorApprovalsPage = () => { | ||
return ( | ||
<> | ||
<PreviewBanner linkTarget={"/execConnectors"} /> | ||
<ConnectorApprovals /> | ||
</> | ||
); | ||
return <ConnectorApprovals />; | ||
}; | ||
|
||
export default ConnectorApprovalsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
import PreviewBanner from "src/app/components/PreviewBanner"; | ||
import SchemaApprovals from "src/app/features/approvals/schemas/SchemaApprovals"; | ||
|
||
const SchemaApprovalsPage = () => { | ||
return ( | ||
<> | ||
<PreviewBanner linkTarget={"/execSchemas"} /> | ||
<SchemaApprovals /> | ||
</> | ||
); | ||
return <SchemaApprovals />; | ||
}; | ||
|
||
export default SchemaApprovalsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
import PreviewBanner from "src/app/components/PreviewBanner"; | ||
import TopicApprovals from "src/app/features/approvals/topics/TopicApprovals"; | ||
|
||
const TopicApprovalsPage = () => { | ||
return ( | ||
<> | ||
<PreviewBanner linkTarget={"/execTopics"} /> | ||
<TopicApprovals /> | ||
</> | ||
); | ||
return <TopicApprovals />; | ||
}; | ||
|
||
export default TopicApprovalsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
coral/src/app/pages/configuration/environments/kafka-connect/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
coral/src/app/pages/configuration/environments/kafka/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
coral/src/app/pages/configuration/environments/schema-registry/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.