Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
elegantmoose committed Jun 14, 2023
1 parent 21eab7e commit 5dd3d77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/adversaries.html
Original file line number Diff line number Diff line change
Expand Up @@ -1431,9 +1431,9 @@ <h3>Create a profile</h3>
dragAbility(event){
const fromIndex = this.abilityTableDragTargetIndex - 1;
const toIndex = this.abilityTableDragEndIndex - 1;
const temp = this.selectedProfileAbilities[fromIndex];
this.selectedProfileAbilities.splice(fromIndex, 1);
this.selectedProfileAbilities.splice(toIndex, 0, temp);
const temp = this.selectedProfileAbilities[fromIndex];
this.selectedProfileAbilities.splice(fromIndex, 1);
this.selectedProfileAbilities.splice(toIndex, 0, temp);

this.unsavedChanges = true;
this.abilityTableDragHoverId = undefined;
Expand Down

0 comments on commit 5dd3d77

Please sign in to comment.