Webapp: Fix superfluous null comparison

Remove the superfluous comparison to `(null || '')`. Just compare to
the empty string instead.

Reviewed-on: https://projects.blender.org/studio/flamenco/pulls/104307
Reviewed-by: Sybren A. Stüvel <sybren@blender.org>
This commit is contained in:
Mateus Abelli 2024-05-13 16:21:34 +02:00 committed by Sybren A. Stüvel
parent ae0774b440
commit 4aa391c679

@ -101,7 +101,7 @@
v-show="currentSetupStep == 3"
@next-clicked="nextStepAfterCheckBlenderExePath"
@back-clicked="prevStep"
:is-next-clickable="selectedBlender != null || customBlenderExe != (null || '')"
:is-next-clickable="selectedBlender != null || customBlenderExe != ''"
title="Blender">
<div v-if="isBlenderExeFinding" class="is-in-progress">Looking for Blender installs...</div>