File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/mission/imap/+mag/+imap/@Analysis Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 8
8
9
9
- (All) Add ` mag.mixin.TimeSeriesOperationSupport ` for simplified operations support
10
10
- (All) Fix issues with colors and legends for multiple stackedplots
11
+ - (IMAP) Fix cropping of events when no events are loaded
11
12
- (IMAP) Check there is data before enabling auto-compression event in ` mag.imap.view.Field `
12
13
13
14
## Package
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ function loadEventsData(this)
292
292
%% Amend Time Range
293
293
294
294
% Concentrate on recorded timerange.
295
- if ~isempty(this .Results .Metadata ) && ~ismissing(this .Results .Metadata .Timestamp )
295
+ if ~isempty(events ) && ~isempty( this .Results .Metadata ) && ~ismissing(this .Results .Metadata .Timestamp )
296
296
events = events([events .Timestamp ] > this .Results .Metadata .Timestamp );
297
297
end
298
298
You can’t perform that action at this time.
0 commit comments