Skip to content

Commit

Permalink
Version 1.4.0, gravatar
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed Sep 24, 2023
1 parent f28301f commit 5bb3a9d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<p class="version">ShockLink UI 1.3.2
<p class="version">ShockLink UI 1.4.0
<a target="_blank" :href="'https://github.com/Shock-Link/WebUI/commit/' + commitHash">{{ commitHash }}</a> | API <span
v-html="apiVersion"></span> <a target="_blank"
:href="'https://github.com/Shock-Link/API/commit/' + apiCommitHash">{{ apiCommitHash }}</a> | <span>{{ targetEnv }}</span>
Expand Down
2 changes: 1 addition & 1 deletion src/views/dashboard/Navigation/Item.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<li class="nav-item" :class="{active: item.active, profile: item.profile}" ref="li">
<a class="nav-link" v-if="item.profile" v-on:click="this.$parent.clicked(index)">
<img :src="$store.state.user.image + 'x128'">
<img :src="$store.state.user.image + '&s=256'">
</a>
<a class="nav-link" v-else v-on:click="this.$parent.clicked(index)" v-html="item.html"/>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/views/dashboard/shockers/own/ShockerLogs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<b-container>
<b-row align-h="start" align-v="center">
<b-col md="auto">
<img class="user-image" :src="row.item.controlledBy.image + 'x128'" />
<img class="user-image" :src="row.item.controlledBy.image + '&s=256'" />
</b-col>
<b-col>
<p class="mb-0">{{ row.item.controlledBy.customName === null ? row.item.controlledBy.name : row.item.controlledBy.customName + ' [' + row.item.controlledBy.name + ']' }}</p>
Expand Down
4 changes: 2 additions & 2 deletions src/views/dashboard/shockers/own/shares/ShockerSharesRoot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<b-container>
<b-row align-h="start" align-v="center">
<b-col md="auto">
<img class="user-image" :src="row.item.sharedWith.image + 'x128'" />
<img class="user-image" :src="row.item.sharedWith.image + '&s=128'" />
</b-col>
<b-col>
<p class="mb-0">{{ row.item.sharedWith.name }}</p>
Expand Down Expand Up @@ -79,7 +79,7 @@
<b-container style="padding: 0;">
<b-row align-h="start" align-v="center">
<b-col md="auto">
<img class="user-image" :src="editing.sharedWith.image + 'x128'" />
<img class="user-image" :src="editing.sharedWith.image + '&s=128'" />
</b-col>
<b-col>
<p class="mb-0">{{ editing.sharedWith.name }}</p>
Expand Down
2 changes: 1 addition & 1 deletion src/views/public/nav/PublicNavRoot.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<nav class="navbar first-level">
<a class="navbar-logo"><img src="@/assets/images/shocklink-logo-white.png" alt="naxoKit Logo"/></a>
<a class="navbar-logo"><img src="@/assets/images/shocklink-logo-white.png" alt="ShockLink Logo"/></a>
<theme-toggle/>
<button class="navbar-toggler" @click="mobileShow = !mobileShow" type="button"
aria-controls="navbarSupportedContent" aria-expanded="false"
Expand Down

0 comments on commit 5bb3a9d

Please sign in to comment.