Skip to content

Commit

Permalink
fix: hide rf region select when it's known
Browse files Browse the repository at this point in the history
Fixes #4045
  • Loading branch information
robertsLando committed Dec 2, 2024
1 parent db352cb commit a1e23bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/nodes-table/OTAUpdates.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<v-select
v-if="
controllerNode &&
controllerNode.rfRegion === undefined
controllerNode.RFRegion === undefined
"
style="max-width: 200px"
class="ml-2 mb-2"
Expand Down Expand Up @@ -199,7 +199,7 @@ export default {
if (
this.controllerNode &&
this.controllerNode.rfRegion === undefined
this.controllerNode.RFRegion === undefined
) {
options.rfRegion = this.rfRegion
}
Expand Down

0 comments on commit a1e23bc

Please sign in to comment.