@@ -85,24 +85,17 @@ const facts = computed<FactsGroup[]>(() => {
8585 if (hostnameInformationVisible .value ) {
8686 const hostnameFacts: Fact [] = []
8787
88- if (_flow .value .flow .host_server_name ) {
89- hostnameFacts .push ({
90- label: t (' standalone.flows.hostname' ),
91- value: _flow .value .flow .host_server_name
92- })
93- }
94-
9588 if (_flow .value .flow .dns_host_name ) {
9689 hostnameFacts .push ({
97- label: t (' standalone.flows.domain ' ),
90+ label: t (' standalone.flows.associated_dns ' ),
9891 value: _flow .value .flow .dns_host_name
9992 })
10093 }
10194
102- if (_flow .value .flow .ssl ?. client_sni ) {
95+ if (_flow .value .flow .host_server_name ) {
10396 hostnameFacts .push ({
104- label: t (' standalone.flows.tls_sni_hostname ' ),
105- value: _flow .value .flow .ssl . client_sni
97+ label: t (' standalone.flows.hostname ' ),
98+ value: _flow .value .flow .host_server_name
10699 })
107100 }
108101
@@ -279,8 +272,7 @@ const downloadBytes = computed(() => {
279272const hostnameInformationVisible = computed <boolean >(() => {
280273 return [
281274 _flow .value ?.flow .host_server_name != undefined ,
282- _flow .value ?.flow .dns_host_name != undefined ,
283- _flow .value ?.flow .ssl ?.client_sni != undefined
275+ _flow .value ?.flow .dns_host_name != undefined
284276 ].some ((value ) => value )
285277})
286278 </script >
0 commit comments