Skip to content

Commit 797b58a

Browse files
committed
Small fixes
1 parent b578b1a commit 797b58a

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

components/modules/navigation/NavLink.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const props = defineProps({
88
link: Object,
99
})
1010
11-
const isExpanded = ref(props.link.children?.some((l) => l.path === route.path) ? true : false)
11+
const isExpanded = ref(props.link.children?.some((l) => l.path === route.path) ? true : (props.link.name === 'Rollups' ? true : false))
1212
1313
const handleClick = () => {
1414
emit("onClose")

pages/calculators/savings.vue

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ useHead({
328328
<Icon name="info" size="12" color="support" />
329329
</Flex>
330330
331-
<template #content> TODO: Tooltip for Rollup Stack </template>
331+
<template #content> Rollup underlying technology (SDK). </template>
332332
</Tooltip>
333333
334334
<Flex wide align="center" gap="8" :class="$style.items">
@@ -379,11 +379,11 @@ useHead({
379379
<Flex direction="column" gap="10">
380380
<Tooltip side="top" position="start">
381381
<Flex align="center" gap="6">
382-
<Text size="13" weight="600" color="primary"> Transaction Stack </Text>
382+
<Text size="13" weight="600" color="primary"> Transaction Type </Text>
383383
<Icon name="info" size="12" color="support" />
384384
</Flex>
385385
386-
<template #content> TODO: Tooltip for Tx Stack </template>
386+
<template #content> Type of transaction used to calculate the total size of posted data. </template>
387387
</Tooltip>
388388
389389
<Flex wide align="center" gap="8" :class="$style.items">
@@ -415,7 +415,16 @@ useHead({
415415
<!-- Txs count -->
416416
<Flex direction="column" gap="16">
417417
<Flex align="center" justify="between">
418-
<Text size="13" weight="600" color="primary"> Expected transactions </Text>
418+
<Tooltip side="top" position="start">
419+
<Flex align="center" gap="6">
420+
<Text size="13" weight="600" color="primary"> Expected transactions </Text>
421+
<Icon name="info" size="12" color="support" />
422+
</Flex>
423+
424+
<template #content> Total number of posted transactions. </template>
425+
</Tooltip>
426+
427+
<!-- <Text size="13" weight="600" color="primary"> Expected transactions </Text> -->
419428
420429
<template v-if="editMode !== 'txs'">
421430
<Text @click="handleEnableTxsEditMode" size="13" weight="600" color="primary"> {{ comma(txs) }} </Text>
@@ -509,7 +518,7 @@ useHead({
509518
</Flex>
510519
511520
<Flex wide direction="column" gap="24" :class="$style.right">
512-
<Flex direction="column" gap="8">
521+
<Flex direction="column" gap="10">
513522
<Tooltip side="top" position="start" wide>
514523
<Flex wide align="center" justify="between">
515524
<Flex align="center" gap="6">

0 commit comments

Comments
 (0)