Skip to content

Commit

Permalink
fix isSPAnalysisBase
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Jun 26, 2024
1 parent 347f37f commit 69e6865
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gui/src/app/SPAnalysis/SPAnalysisDataModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const isSPAnalysisBase = (x: any): x is SPAnalysisBase => {
if (!x) return false
if (typeof x !== 'object') return false
if (!isSamplingOpts(x.samplingOpts)) return false
if (!isSPAnalysisFiles(x)) return false
return true
}

Expand Down

0 comments on commit 69e6865

Please sign in to comment.