File tree 2 files changed +3
-10
lines changed
Our.Umbraco.Look.BackOffice/Client/Views
2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 18
18
19
19
< div class ="look-body ">
20
20
< dl >
21
- < dt > Name</ dt >
22
- < dd > {{ searcherName }}</ dd >
23
-
24
- < dt > Description</ dt >
25
- < dd > {{ viewData.searcherDescription }}</ dd >
26
-
27
21
< dt > Type</ dt >
28
22
< dd > {{ viewData.searcherType }}</ dd >
29
23
30
24
< dt > Look Indexing Enabled</ dt >
31
- < dd > {{ viewData.lookIndexingEnabled }}</ dd >
32
-
25
+ < dd > < span class ="{{ viewData.lookIndexingEnabled ? 'icon-checkbox' : 'icon-checkbox-empty' }} "> </ span > </ dd >
33
26
</ dl >
34
27
35
28
< ng-include src ="'/App_Plugins/Look/BackOffice/LookTree/Partials/Matches.html' "> </ ng-include >
Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplica
51
51
52
52
LookService . Initialize ( this . _umbracoHelper ) ;
53
53
54
- foreach ( var lookIndexer in this . _lookIndexers . Where ( x => ! x . IndexExists ( ) ) )
54
+ foreach ( var lookIndexer in this . _lookIndexers )
55
55
{
56
- lookIndexer . RebuildIndex ( ) ;
56
+ lookIndexer . EnsureIndex ( false ) ;
57
57
}
58
58
59
59
ContentService . Published += ContentService_Published ;
You can’t perform that action at this time.
0 commit comments