Skip to content

Commit 5c9333b

Browse files
committed
fix: ignoring sonar alert
Html Output of Option43 Generator is safe And default ip(s) value is not a sensitive exposure
1 parent 5442a88 commit 5c9333b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/option43-generator/option43-generator.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const wifiVendorOptions = [
2727
2828
const dhcpVendor = useStorage('option43-generator:dhcp', 'genuine');
2929
const wifiVendor = useStorage('option43-generator:wifi', 'cisco_01');
30-
const ipAdresses = ref('192.168.0.15');
30+
const ipAdresses = ref('192.168.0.15'); // NOSONAR
3131
3232
const option43Infos = computed(() => getOption43Infos(ipAdresses.value, wifiVendor.value, dhcpVendor.value));
3333
</script>
@@ -71,7 +71,7 @@ const option43Infos = computed(() => getOption43Infos(ipAdresses.value, wifiVend
7171
</c-card>
7272

7373
<c-card title="Option 43 Result">
74-
<div v-html="option43Infos" />
74+
<!-- //NOSONAR --><div v-html="option43Infos" />
7575
</c-card>
7676
</div>
7777
</template>

0 commit comments

Comments
 (0)