Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit 2c33fcd

Browse files
committed
Add 'Running Online' to Dojos search results if club is online.
1 parent ee3eba3 commit 2c33fcd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/dojos/cd-dojo-list-item.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
</h4>
1414
<p class="cd-dojo-list-item__meta">{{dojo.address1}}</p>
1515
<p class="cd-dojo-list-item__meta">{{buildDojoFrequency(dojo)}}</p>
16+
<p v-if="dojo.onlineSessions" class="cd-dojo-list-item__meta"><i class="fa fa-laptop" aria-hidden="true"></i>{{ $t('Running Online') }}</p>
1617
<event-stamp :dojo="dojo"></event-stamp>
1718
</div>
1819
</div>
@@ -67,6 +68,10 @@
6768
font-size: 16px;
6869
margin-bottom: 0;
6970
}
71+
72+
&__meta .fa {
73+
margin-right: 8px;
74+
}
7075
}
7176
7277
@media (max-width: @screen-xs-max) {

0 commit comments

Comments
 (0)