Skip to content

Commit

Permalink
refac(astrapia): remove v-if for timeframe
Browse files Browse the repository at this point in the history
NETANOL-230
  • Loading branch information
Tristan LOSADA BENINI authored and Lelleck committed Apr 8, 2024
1 parent 31c1e08 commit 4e3cd38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Astrapia/components/QueryConditionForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<option value="Unknown">Unknown</option>
<option value="Tcp">TCP</option>
<option value="Udp">UDP</option>
<option value="Icmp">ICMP</option>
</select>
<div v-for="(protocol, index) in dataProtocolsWhitelist" :key="index" class="whitelist-item">
<span class="dot">&#8226;</span>
Expand Down
4 changes: 2 additions & 2 deletions Astrapia/pages/topology.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<Dropdown class="layout-dropdown" @changeLayout="handleLayoutChange" />
<Graph :data="data" @intervalAmount="handleIntervalAmount"/>
<GraphFilterMenu :layout="layout" @menuOpened="handleMenuOpened" @layersFetched="fetchAndUpdateGraph" @queryConditions="handleQueryConditions"/>
<TopologyTimeframeSelector v-if="data" class="topology-timeframe"
<TopologyTimeframeSelector class="topology-timeframe"
@change="handleTimeframeSelection"
:from-value="timeframeSelectorFrom"
:to-value="timeframeSelectorTo"/>
<QueryConditionButton v-if="data" class="query-conditions" :layout="layout" :queryConditions="queryConditions"/>
<QueryConditionButton class="query-conditions" :layout="layout" :queryConditions="queryConditions"/>
</div>
</template>

Expand Down

0 comments on commit 4e3cd38

Please sign in to comment.