Manager: allow setup to finish without Blender #104306
@ -102,7 +102,7 @@
|
||||
@next-clicked="nextStepAfterCheckBlenderExePath"
|
||||
@back-clicked="prevStep"
|
||||
:is-next-clickable="
|
||||
selectedBlender != null || customBlenderExe != (null || '') || skipCustomBlenderExe
|
||||
selectedBlender != null || customBlenderExe != '' || skipCustomBlenderExe
|
||||
abelli marked this conversation as resolved
Outdated
|
||||
"
|
||||
title="Blender">
|
||||
<div v-if="isBlenderExeFinding" class="is-in-progress">Looking for Blender installs...</div>
|
||||
|
Loading…
Reference in New Issue
Block a user
That original code already won't work,
customBlenderExe != (null || '')
is not going to do what it's intended to express.null
is a false-y value, and so(null || '')
gets shortcut to just''
).That's not something to address in this PR though -- this PR adds a feature, and shouldn't also try and fix existing code. But if you're willing to look into this too, a separate PR that fixes this (which could then be landed before adding this new feature) would be much appreciated.
I have opened #104307 to address this one.