File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Files/ViewModels/Properties Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,8 +179,8 @@ public async void GetSystemFileProperties()
179
179
. Where ( fileProp => ! ( fileProp . Value == null && fileProp . IsReadOnly ) )
180
180
. GroupBy ( fileProp => fileProp . SectionResource )
181
181
. Select ( group => new FilePropertySection ( group ) { Key = group . Key } )
182
- . OrderBy ( group => group . Priority )
183
- . Where ( section => ! section . All ( fileProp => fileProp . Value == null ) ) ;
182
+ . Where ( section => ! section . All ( fileProp => fileProp . Value == null ) )
183
+ . OrderBy ( group => group . Priority ) ;
184
184
ViewModel . PropertySections = new ObservableCollection < FilePropertySection > ( query ) ;
185
185
ViewModel . FileProperties = new ObservableCollection < FileProperty > ( list . Where ( i => i . Value != null ) ) ;
186
186
}
You can’t perform that action at this time.
0 commit comments