Skip to content

Commit

Permalink
Fixes #147
Browse files Browse the repository at this point in the history
  • Loading branch information
CodexAdrian committed Jul 12, 2023
1 parent 6650cc9 commit 628ad5a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions theseus_gui/src/components/ui/RunningAppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<div
ref="profileButton"
class="running-text"
:class="{ clickable: currentProcesses.length > 1 }"
@click="toggleProfiles()"
>
{{ selectedProfile.metadata.name }}
<div v-if="currentProcesses.length > 1" class="arrow" :class="{ rotate: showProfiles }">
<router-link :to="`/instance/${encodeURIComponent(selectedProfile.path)}`">
{{ selectedProfile.metadata.name }}
</router-link>
<div v-if="currentProcesses.length > 1" class="arrow button-base" :class="{ rotate: showProfiles }" @click="toggleProfiles()">
<DropdownIcon />
</div>
</div>
Expand Down

0 comments on commit 628ad5a

Please sign in to comment.