|  | @@ -207,7 +207,7 @@
 | 
											
												
													
														|  |          settings: {
 |  |          settings: {
 | 
											
												
													
														|  |            domainStrategy: "AsIs",
 |  |            domainStrategy: "AsIs",
 | 
											
												
													
														|  |            noises: [
 |  |            noises: [
 | 
											
												
													
														|  | -            { type: "rand", packet: "10-20", delay: "10-16" },
 |  | 
 | 
											
												
													
														|  | 
 |  | +            { type: "rand", packet: "10-20", delay: "10-16", applyTo: "ip" },
 | 
											
												
													
														|  |            ],
 |  |            ],
 | 
											
												
													
														|  |          },
 |  |          },
 | 
											
												
													
														|  |        },
 |  |        },
 | 
											
										
											
												
													
														|  | @@ -397,7 +397,7 @@
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |        },
 |  |        },
 | 
											
												
													
														|  |        addNoise() {
 |  |        addNoise() {
 | 
											
												
													
														|  | -        const newNoise = { type: "rand", packet: "10-20", delay: "10-16" };
 |  | 
 | 
											
												
													
														|  | 
 |  | +        const newNoise = { type: "rand", packet: "10-20", delay: "10-16", applyTo: "ip" };
 | 
											
												
													
														|  |          this.noisesArray = [...this.noisesArray, newNoise];
 |  |          this.noisesArray = [...this.noisesArray, newNoise];
 | 
											
												
													
														|  |        },
 |  |        },
 | 
											
												
													
														|  |        removeNoise(index) {
 |  |        removeNoise(index) {
 | 
											
										
											
												
													
														|  | @@ -420,6 +420,11 @@
 | 
											
												
													
														|  |          updatedNoises[index] = { ...updatedNoises[index], delay: value };
 |  |          updatedNoises[index] = { ...updatedNoises[index], delay: value };
 | 
											
												
													
														|  |          this.noisesArray = updatedNoises;
 |  |          this.noisesArray = updatedNoises;
 | 
											
												
													
														|  |        },
 |  |        },
 | 
											
												
													
														|  | 
 |  | +      updateNoiseApplyTo(index, value) {
 | 
											
												
													
														|  | 
 |  | +        const updatedNoises = [...this.noisesArray];
 | 
											
												
													
														|  | 
 |  | +        updatedNoises[index] = { ...updatedNoises[index], applyTo: value };
 | 
											
												
													
														|  | 
 |  | +        this.noisesArray = updatedNoises;
 | 
											
												
													
														|  | 
 |  | +      },
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      computed: {
 |  |      computed: {
 | 
											
												
													
														|  |        fragment: {
 |  |        fragment: {
 |