Skip to content

Commit

Permalink
linter and i18n
Browse files Browse the repository at this point in the history
Signed-off-by: R-Lawton <[email protected]>
  • Loading branch information
R-Lawton committed Oct 23, 2024
1 parent fcd3112 commit 35c70ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion locales/en/plugin__kuadrant-console-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,7 @@
"Visit the blog": "Visit the blog",
"Weight": "Weight",
"YAML View": "YAML View",
"You can view and create HTTPRoutes": "You can view and create HTTPRoutes"
"You can view and create HTTPRoutes": "You can view and create HTTPRoutes",
"Create Gateway": "Create Gateway",
"Create HTTPRoute":"Create HTTPRoute"
}
4 changes: 1 addition & 3 deletions src/components/KuadrantOverviewPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,9 @@ const KuadrantOverviewPage: React.FC = () => {
sessionStorage.getItem('hideGettingStarted') === 'true',
);
const onToggleClick = () => {
console.log("Hello toggle click",!isCreateOpen)
setIsCreateOpen(!isCreateOpen);
};


React.useEffect(() => {
if (ns && ns !== activeNamespace) {
setActiveNamespace(ns);
Expand Down Expand Up @@ -391,7 +389,7 @@ const KuadrantOverviewPage: React.FC = () => {
<FlexItem flex={{ default: 'flex_1' }}>
<Card>
<CardTitle>
<Title headingLevel="h2">{t('Gateways test')}</Title>
<Title headingLevel="h2">{t('Gateways')}</Title>
</CardTitle>
<CardBody className="pf-u-p-10">
<ResourceList
Expand Down

0 comments on commit 35c70ce

Please sign in to comment.