Skip to content

Commit 8075070

Browse files
committed
[feature] Rename "interchange" to "substitution" as in the rules
1 parent 61153cc commit 8075070

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/components/team/TeamBotInterchange.vue renamed to src/components/team/TeamBotSubstitution.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<label>Intends to interchange a bot: </label>
3+
<label>Intends to substitute a bot: </label>
44
<a class="btn-edit" v-on:click="edit()">
55
<font-awesome-icon icon="toggle-on" v-if="botSubstitutionIntend"/>
66
<font-awesome-icon icon="toggle-off" v-if="!botSubstitutionIntend"/>
@@ -10,7 +10,7 @@
1010

1111
<script>
1212
export default {
13-
name: "TeamBotInterchange",
13+
name: "TeamBotSubstitution",
1414
props: {
1515
teamColor: String
1616
},

src/components/team/TeamOverview.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
:team-color="teamColor"/>
5555
</div>
5656
<div>
57-
<TeamBotInterchange
57+
<TeamBotSubstitution
5858
:team-color="teamColor"/>
5959
</div>
6060
<div>
@@ -75,12 +75,12 @@
7575
import TeamRedCards from "./TeamRedCards";
7676
import TeamCounters from "./TeamCounters";
7777
import TeamBallPlacement from "./TeamBallPlacement";
78-
import TeamBotInterchange from "./TeamBotInterchange";
78+
import TeamBotSubstitution from "./TeamBotSubstitution";
7979
8080
export default {
8181
name: "TeamOverview",
8282
components: {
83-
TeamBotInterchange,
83+
TeamBotSubstitution,
8484
TeamBallPlacement,
8585
TeamCounters,
8686
TeamRedCards,

0 commit comments

Comments
 (0)