You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by to...@apache.org on 2018/08/16 11:25:26 UTC

[ambari] branch branch-2.7 updated: [AMBARI-24436] [Log Search UI] App Loader Page - Align the logo left (#2066)

This is an automated email from the ASF dual-hosted git repository.

tobiasistvan pushed a commit to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/branch-2.7 by this push:
     new 50a30aa  [AMBARI-24436] [Log Search UI] App Loader Page - Align the logo left (#2066)
50a30aa is described below

commit 50a30aab0ae9a6d95fa87fca216fd268ffef7c7f
Author: Istvan Tobias <to...@gmail.com>
AuthorDate: Thu Aug 16 13:25:24 2018 +0200

    [AMBARI-24436] [Log Search UI] App Loader Page - Align the logo left (#2066)
    
    (cherry picked from commit 0096119ffd8ba3b26fa260de1b84fa545c3d503a)
---
 .../ambari-logsearch-web/src/app/components/app.component.html          | 2 +-
 .../ambari-logsearch-web/src/app/components/app.component.less          | 1 -
 .../ambari-logsearch-web/src/app/components/app.component.ts            | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.html b/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.html
index a40b0c4..c9f8313 100644
--- a/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.html
+++ b/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.html
@@ -17,7 +17,7 @@
 
 <header>
   <nav class="navbar" [class.authorized]="isAuthorized$ | async">
-    <h1 [ngClass]="{'full-flex-width': !(isAuthorized$ | async), 'pull-left': (isBaseDataAvailable$ | async)}">{{'common.title' | translate}}</h1>
+    <h1>{{'common.title' | translate}}</h1>
     <breadcrumbs *ngIf="(isAuthorized$ | async) && (isBaseDataAvailable$ | async)"></breadcrumbs>
     <top-menu *ngIf="(isAuthorized$ | async) && (isBaseDataAvailable$ | async)"></top-menu>
   </nav>
diff --git a/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.less b/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.less
index aaa18ed..b9eb907 100644
--- a/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.less
+++ b/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.less
@@ -29,7 +29,6 @@
     border-radius: 0;
     color: #fff;
     margin-bottom: 0;
-    justify-content: center;
     .stretch-flex;
     h1 {
       align-items: center;
diff --git a/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.ts b/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.ts
index c711a48..09a82c2 100644
--- a/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.ts
+++ b/ambari-logsearch/ambari-logsearch-web/src/app/components/app.component.ts
@@ -34,7 +34,7 @@ export class AppComponent {
   isBaseDataAvailable$: Observable<boolean> = this.appState.getParameter('baseDataSetState')
     .map((dataSetState: DataAvailability) => dataSetState === DataAvailabilityValues.AVAILABLE);
 
-  private notificationServiceOptions: Options = {
+  notificationServiceOptions: Options = {
     timeOut: 2000,
     showProgressBar: true,
     pauseOnHover: true,