Skip to content

Commit b1ac96b

Browse files
committed
[refactoring] Remove duplicate team heading
1 parent c247be4 commit b1ac96b

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/App.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
</div>
77
<div id="main-elements">
88
<div class="team-container">
9+
<h2>Yellow Team</h2>
910
<TeamOverview class="team-views" team-color="Yellow"/>
1011
<ControlTeam class="team-views" team-color="Yellow"/>
1112
</div>
1213
<div id="field">
1314
<iframe src="http://localhost:8082/" frameborder="none"></iframe>
1415
</div>
1516
<div class="team-container">
17+
<h2>Blue Team</h2>
1618
<TeamOverview class="team-views" team-color="Blue"/>
1719
<ControlTeam class="team-views" team-color="Blue"/>
1820
</div>

src/components/control/ControlTeam.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<template>
22
<div class="control-team">
3-
<h2>Team {{teamColor}}</h2>
43
<span v-b-tooltip.hover
54
:title="'Prepare for a kickoff (' + Object.keys(keymapKickoff)[0] + ')'">
65
<b-button v-hotkey="keymapKickoff"

src/components/team/TeamOverview.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<template>
22
<div>
3-
<h2 v-b-tooltip.hover title="Edit team data by double-clicking a value"> Team {{teamColor}}</h2>
43
<div class="content">
54
<div>
65
<TeamName

0 commit comments

Comments
 (0)