Skip to content

Commit 7c17176

Browse files
committed
fix: correct casing in SelectedNode property references to selectedNode
1 parent 7287f00 commit 7c17176

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/playground/src/components/weblet_layout.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<span class="font-weight-black">{{ costLoading ? "Calculating..." : normalizeBalance(usd) }}</span>
8585
USD per month.
8686

87-
<div v-if="SelectedNode?.certificationType === 'Certified'">
87+
<div v-if="selectedNode?.certificationType === 'Certified'">
8888
You selected a certified node. Please note that this deployment costs more TFT.
8989
</div>
9090
</div>
@@ -360,7 +360,7 @@ const onlyIPV4TftPrice = ref<number>();
360360
const onlyIPV4UsdPrice = ref<number>();
361361
362362
watch(
363-
() => [props.cpu, props.memory, props.disk, props.ipv4, props.dedicated, props.SelectedNode],
363+
() => [props.cpu, props.memory, props.disk, props.ipv4, props.dedicated, props.selectedNode],
364364
debounce((value, oldValue) => {
365365
if (
366366
oldValue &&
@@ -412,7 +412,7 @@ async function loadCost(profile: { mnemonic: string }) {
412412
mru: typeof props.memory === "number" ? (props.memory ?? 0) / 1024 : 0,
413413
hru: 0,
414414
ipv4u: props.ipv4,
415-
certified: props.SelectedNode?.certificationType === "Certified",
415+
certified: props.selectedNode?.certificationType === "Certified",
416416
});
417417
await getIPv1Price(grid!);
418418
usd.value = props.dedicated ? dedicatedPrice : sharedPrice;

0 commit comments

Comments
 (0)