Skip to content

Commit

Permalink
Change default view on landing page to big list
Browse files Browse the repository at this point in the history
  • Loading branch information
ByronCinNZ committed Jun 18, 2024
1 parent 59f7d64 commit 713c9da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions core/src/test/resources/WEB-INF/config.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
]
# Define using CRON expression when watchlist notifier is triggered (Default 4AM)
usersavedselection.watchlist.frequency=0 0 4 * * ?

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

<div class="gn-editor-map-toolbar">
<div
ng-if="ctrl.dataOlProjection == null"
ng-if="ctrl.polygonXml && ctrl.dataOlProjection == null"
class="alert alert-danger"
data-translate=""
data-translate-values="{srsName:'{{ctrl.dataProjection}}'}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ <h1 class="col-md-12" data-translate="">
<div
class="row gn-row-info"
data-ng-show="searchInfo.hits.total.value > 0"
data-ng-class="{'gn-info-list-blocks': type === 'blocks' || type === undefined, 'gn-info-list-large': type === 'large', 'gn-info-list-small': type === 'small'}"
data-ng-class="{'gn-info-list-blocks': type === 'blocks', 'gn-info-list-large': type === 'large' || type === undefined, 'gn-info-list-small': type === 'small'}"
>
<div data-ng-class="fluidLayout ? 'container-fluid' : 'container'">
<div class="col-sm-12">
Expand All @@ -184,7 +184,7 @@ <h1 class="col-md-12" data-translate="">
class="btn btn-default"
data-ng-click="toggleListType('blocks')"
data-ng-model="type"
data-ng-class="{'active': type === 'blocks' || type === undefined}"
data-ng-class="{'active': type === 'blocks'}"
aria-label="{{'listTypeBlocks' | translate}}"
>
<i class="fa fa-th-large" aria-hidden="true"></i>
Expand All @@ -193,7 +193,7 @@ <h1 class="col-md-12" data-translate="">
id="btn-toggle-large"
type="button"
class="btn btn-default"
data-ng-click="toggleListType('large')"
data-ng-click="toggleListType('large' || type === undefined)"
data-ng-model="type"
data-ng-class="{'active': type === 'large'}"
aria-label="{{'listTypeLarge' | translate}}"
Expand Down

0 comments on commit 713c9da

Please sign in to comment.