Adam Majer
aa8a3581a9
* move branding images to distribution-logos-SLE package * re-add dependency on distribution-logos * remove branding patch and assets (suse-microos-branding.patch, suse-microos-branding.tar.gz); moved to GitHub fork * remove local __python3 macro * apply SLE specific patches only on SLE - add hide-pcp.patch to hide references to PCP (Performance Co-Pilot) and metric collection (bsc#1195943). The cockpit-pcp package is not included in SLE Micro 5.2 base and these parts require it. - update to new LTS version from openSUSE:Factory - port remove-pwscore.patch * remove dependency on pwscore (bsc#1182924) * remove password strenth indicator - port branding changes as suse-microos "theme" * remove suse_cockpit_assets.tar.gz * add suse-microos-branding.tar.gz * remove branding_tests.patch * add suse-microos-branding.patch - remove files not needed to build this version anymore * webpack-warnings-are-not-errors.patch * github_package.patch * nodejs_output_helper.bash - remove cockpit.permissions workaround (bsc#1169614) OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:cockpit/cockpit?expand=0&rev=85
36 lines
1.5 KiB
Diff
36 lines
1.5 KiB
Diff
diff --git a/pkg/metrics/metrics.jsx b/pkg/metrics/metrics.jsx
|
|
index 188aad7..a04b094 100644
|
|
--- a/pkg/metrics/metrics.jsx
|
|
+++ b/pkg/metrics/metrics.jsx
|
|
@@ -995,6 +995,7 @@ const PCPConfig = ({ buttonVariant, firewalldRequest, needsLogout, setNeedsLogou
|
|
return (
|
|
<>
|
|
<Button variant={buttonVariant} icon={<CogIcon />}
|
|
+ className="pf-u-display-none"
|
|
isDisabled={ invalidService(s_pmlogger) || invalidService(s_pmproxy) || invalidService(s_redis) || invalidService(s_redis_server) }
|
|
onClick={ () => {
|
|
setDialogLoggerValue(runningService(s_pmlogger));
|
|
@@ -1429,7 +1430,7 @@ export const Application = () => {
|
|
<PageSection>
|
|
<CurrentMetrics />
|
|
</PageSection>
|
|
- <PageSection>
|
|
+ <PageSection className="pf-u-display-none">
|
|
<MetricsHistory firewalldRequest={setFirewalldRequest}
|
|
needsLogout={needsLogout}
|
|
setNeedsLogout={setNeedsLogout} />
|
|
|
|
</PageSection>
|
|
diff --git a/pkg/metrics/metrics.scss b/pkg/metrics/metrics.scss
|
|
index 025a30b..b4763c2 100644
|
|
--- a/pkg/metrics/metrics.scss
|
|
+++ b/pkg/metrics/metrics.scss
|
|
@@ -2,6 +2,7 @@
|
|
@import "../lib/ct-card.scss";
|
|
@import "@patternfly/patternfly/components/Table/table.scss";
|
|
@import "@patternfly/patternfly/components/Toolbar/toolbar.scss";
|
|
+@import "@patternfly/patternfly/utilities/Display/display.scss";
|
|
|
|
#app {
|
|
section.pf-c-page__main-breadcrumb {
|