fix: ignoring sonar alert

Html Output of Option43 Generator is safe
And default ip(s) value is not a sensitive exposure
This commit is contained in:
sharevb 2024-04-08 10:09:36 +02:00 committed by ShareVB
parent 5442a88318
commit 5c9333bcf9

View File

@ -27,7 +27,7 @@ const wifiVendorOptions = [
const dhcpVendor = useStorage('option43-generator:dhcp', 'genuine');
const wifiVendor = useStorage('option43-generator:wifi', 'cisco_01');
const ipAdresses = ref('192.168.0.15');
const ipAdresses = ref('192.168.0.15'); // NOSONAR
const option43Infos = computed(() => getOption43Infos(ipAdresses.value, wifiVendor.value, dhcpVendor.value));
</script>
@ -71,7 +71,7 @@ const option43Infos = computed(() => getOption43Infos(ipAdresses.value, wifiVend
</c-card>
<c-card title="Option 43 Result">
<div v-html="option43Infos" />
<!-- //NOSONAR --><div v-html="option43Infos" />
</c-card>
</div>
</template>